diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-07 20:31:33 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-07 20:31:33 -0400 |
commit | 554ba694ab54fe5d318fb3b3065808361df50f0b (patch) | |
tree | 719d8ec72200f07415cc446608738f8c0dd8ba90 /fold.c | |
parent | 9294295bb54c27da644c4e6f413537ae46883ca1 (diff) | |
download | roux-554ba694ab54fe5d318fb3b3065808361df50f0b.tar.gz |
use cast in czero()
Diffstat (limited to 'fold.c')
-rw-r--r-- | fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fold.c b/fold.c index 740ad6b..f29e20a 100644 --- a/fold.c +++ b/fold.c @@ -26,7 +26,7 @@ czero(Con *c, int w) if (w) return !c->bits.i; else - return !(c->bits.i & 0xffffffff); + return !(uint32_t)c->bits.i; } static int |