From 72230d3ca37d34cafa0442c23f83121ae1fc41be Mon Sep 17 00:00:00 2001 From: Alexander Zubkov Date: Mon, 23 Jan 2023 14:23:00 +0100 Subject: [PATCH] Small fix of indenting --- misc/ips.c | 6 ++++-- 1 file 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++;