Index: uspace/lib/softint/generic/bits.c
===================================================================
--- uspace/lib/softint/generic/bits.c	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/softint/generic/bits.c	(revision cbc534cf92ce35b6ee6f37943d685bdc4b1b70d8)
@@ -82,5 +82,6 @@
  * If the number is zero, zero is returned.
  */
-int __ffsdi2(long a) {
+int __ffsdi2(long a)
+{
 	if (a == 0) {
 		return 0;
Index: uspace/lib/softint/generic/division.c
===================================================================
--- uspace/lib/softint/generic/division.c	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/softint/generic/division.c	(revision cbc534cf92ce35b6ee6f37943d685bdc4b1b70d8)
@@ -61,5 +61,5 @@
 	for (; steps > 0; steps--) {
 		/* shift one bit to remainder */
-		*remainder = ((*remainder) << 1) | (( a >> 31) & 0x1);
+		*remainder = ((*remainder) << 1) | ((a >> 31) & 0x1);
 		result <<= 1;
 
