]> git.refcnt.org Git - colorize.git/commitdiff
Properly indent pair of braces
authorSteven Schubiger <stsc@refcnt.org>
Tue, 18 Aug 2015 17:10:50 +0000 (19:10 +0200)
committerSteven Schubiger <stsc@refcnt.org>
Tue, 18 Aug 2015 17:10:50 +0000 (19:10 +0200)
colorize.c

index c54cec731b6403a5f360718268e40a001df683e0..d73e5f6825cd0a34186f1c50ef3b46e827e14e77 100644 (file)
@@ -748,10 +748,11 @@ read_print_stream (bool bold, const struct color **colors, const char *file, FIL
             print_line (bold, colors, line, flags);
             line = p;
           }
-        if (feof (stream)) {
-          if (*line != '\0')
-            print_line (bold, colors, line, 0);
-        }
+        if (feof (stream))
+          {
+            if (*line != '\0')
+              print_line (bold, colors, line, 0);
+          }
         else if (*line != '\0')
           {
             char *p;