]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bit-fls.c
tableprinter: removed some obsolete FIXME, added some comments
[libucw.git] / ucw / bit-fls.c
index 9a2fe435e344a6b49f2d97978d8fed7f8f973123..41002564db43496791d177d724e5505f45d283da 100644 (file)
@@ -13,7 +13,7 @@
 int
 bit_fls(u32 x)
 {
-  uns l;
+  uint l;
 
   if (!x)
        return -1;
@@ -33,7 +33,7 @@ bit_fls(u32 x)
 
 int main(void)
 {
-  uns i;
+  uint i;
   while (scanf("%x", &i) == 1)
     printf("%d\n", bit_fls(i));
   return 0;