OSDN Git Service

- trim any trailing whitespace
[uclinux-h8/uClibc.git] / libc / string / ffs.c
index f7d94eb..241b745 100644 (file)
@@ -48,7 +48,7 @@ int ffs(int i)
        for (n = 0 ; i ; ++n) {
                i >>= 1;
        }
-       
+
        return n;
 #endif
 }