Index: uspace/drv/hid/ps2mouse/ps2mouse.c
===================================================================
--- uspace/drv/hid/ps2mouse/ps2mouse.c	(revision 76d0981d8dda2b7d698201a93e0c555e99215ba5)
+++ uspace/drv/hid/ps2mouse/ps2mouse.c	(revision f712a858b9463dae30e9eee5ef1ccc54ae618f02)
@@ -165,5 +165,5 @@
 
 	/* Probe IntelliMouse extensions. */
-	errno_t (*polling_f)(void*) = polling_ps2;
+	errno_t (*polling_f)(void *) = polling_ps2;
 	if (probe_intellimouse(mouse, false) == EOK) {
 		ddf_msg(LVL_NOTE, "Enabled IntelliMouse extensions");
@@ -253,7 +253,7 @@
 	errno_t rc;
 
-	bool buttons[PS2_BUTTON_COUNT] = {};
+	bool buttons[PS2_BUTTON_COUNT] = { };
 	while (true) {
-		uint8_t packet[PS2_BUFSIZE] = {};
+		uint8_t packet[PS2_BUFSIZE] = { };
 		rc = ps2_mouse_read_packet(mouse, packet, PS2_BUFSIZE);
 		if (rc != EOK)
@@ -305,7 +305,7 @@
 	errno_t rc;
 
-	bool buttons[INTELLIMOUSE_BUTTON_COUNT] = {};
+	bool buttons[INTELLIMOUSE_BUTTON_COUNT] = { };
 	while (true) {
-		uint8_t packet[INTELLIMOUSE_BUFSIZE] = {};
+		uint8_t packet[INTELLIMOUSE_BUFSIZE] = { };
 		rc = ps2_mouse_read_packet(mouse, packet, INTELLIMOUSE_BUFSIZE);
 		if (rc != EOK)
