Index: uspace/app/sbi/src/bigint.c
===================================================================
--- uspace/app/sbi/src/bigint.c	(revision ae7d03c05f24b857bbbdbcf3dafbf8ecc6c286ab)
+++ uspace/app/sbi/src/bigint.c	(revision f959786633df7b137a1e39b67c43a12c1beb80fc)
@@ -202,5 +202,5 @@
 
 	if (bigint->negative)
-		val = - val;
+		val = -val;
 
 	/* If the value did not fit @c val now contains garbage. Verify. */
@@ -368,5 +368,5 @@
 {
 	static const char digits[] = { '0', '1', '2', '3', '4', '5', '6',
-	    '7', '8', '9' };
+		'7', '8', '9' };
 
 	bigint_t val, tmp;
@@ -632,5 +632,5 @@
 		db = b;
 
-		tmp = (da * db) + (bigint_word_t) carry;
+		tmp = da * db + (bigint_word_t) carry;
 
 		carry = (bigint_word_t) (tmp / BIGINT_BASE);
Index: uspace/app/usbinfo/info.c
===================================================================
--- uspace/app/usbinfo/info.c	(revision ae7d03c05f24b857bbbdbcf3dafbf8ecc6c286ab)
+++ uspace/app/usbinfo/info.c	(revision f959786633df7b137a1e39b67c43a12c1beb80fc)
@@ -269,6 +269,4 @@
 	}
 
-	/*printf("Found string in %s->%s: %zu\n",
-	    #descr_struct, #descr_item, __str_index); */
 #define SET_STRING_INDEX(descr, mask, descr_type, descr_struct, descr_item) \
 	do { \
Index: uspace/app/vuhid/hids/logitech_wireless.c
===================================================================
--- uspace/app/vuhid/hids/logitech_wireless.c	(revision ae7d03c05f24b857bbbdbcf3dafbf8ecc6c286ab)
+++ uspace/app/vuhid/hids/logitech_wireless.c	(revision f959786633df7b137a1e39b67c43a12c1beb80fc)
@@ -58,14 +58,10 @@
 #define iface1_input_size 8
 static uint8_t iface1_in_data[] = {
-		/*0, 0, 0, 0, 0, 0, 0, 0,
-		0, 9, 0, 0, 0, 0, 0, 0,
-		0, 0, 9, 0, 0, 0, 0, 0,
-		0, 9, 9, 0, 0, 0, 0, 0,*/
-		0, 0, 0, 0, 0, 0, 0, 0
+	0, 0, 0, 0, 0, 0, 0, 0
 };
 
 static vuhid_interface_life_t iface1_life = {
 	.data_in = iface1_in_data,
-	.data_in_count = sizeof(iface1_in_data)/iface1_input_size,
+	.data_in_count = sizeof(iface1_in_data) / iface1_input_size,
 	.data_in_pos_change_delay = 50,
 	.msg_born = "Mouse of Logitech Unifying Receiver comes to life...",
