summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Zubkov <green@qrator.net>2023-01-23 14:23:00 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2023-01-23 14:23:00 +0100
commit72230d3ca37d34cafa0442c23f83121ae1fc41be (patch)
tree7ce9abc059b7fa6ae22ffc19d8e0640e49b06584
parent5437104afad90f2a74ce52946f06da607d021e2b (diff)
Small fix of indenting
-rw-r--r--misc/ips.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/ips.c b/misc/ips.c
index 467cc25d..ea8eef7f 100644
--- a/misc/ips.c
+++ b/misc/ips.c
@@ -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++;