tunnels: fix netns vs proto registration ordering
[safe/jmp/linux-2.6] / lib / int_sqrt.c
index a5d2cdc..fd355a9 100644 (file)
@@ -15,7 +15,7 @@ unsigned long int_sqrt(unsigned long x)
        op = x;
        res = 0;
 
-       one = 1 << 30;
+       one = 1UL << (BITS_PER_LONG - 2);
        while (one > op)
                one >>= 2;