diff options
Diffstat (limited to 'misc/ips.c')
-rw-r--r-- | misc/ips.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -60,10 +60,12 @@ main(int argc, char **argv) { uint i, e; if (scanf("%x/%d", &i, &e) != 2) + { if (feof(stdin)) break; - else - fprintf(stderr, "BUGGG\n"); + else + fprintf(stderr, "BUGGG\n"); + } // i >>= (32-e); // i |= (i >> e); cnt++; |