diff options
author | Alexander Zubkov <green@qrator.net> | 2023-01-23 14:23:00 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-23 14:23:00 +0100 |
commit | 72230d3ca37d34cafa0442c23f83121ae1fc41be (patch) | |
tree | 7ce9abc059b7fa6ae22ffc19d8e0640e49b06584 /misc/ips.c | |
parent | 5437104afad90f2a74ce52946f06da607d021e2b (diff) |
Small fix of indenting
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++; |