diff options
-rw-r--r-- | num.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,11 +11,11 @@ static char *binary(unsigned long long i, int w) unsigned long long b; int c; - b = 1<<(w-1); + b = 1ull<<(w-1); p = buff; - for(c = w; c--; b = b>>1) + for(c = w; c--; b = b>>1ull) { if (((c+1)%4) == 0 && !first) { |