Minor missing-braces-fix
authorAndreas Eversberg <jolly@eversberg.eu>
Mon, 2 Oct 2017 16:12:55 +0000 (18:12 +0200)
committerAndreas Eversberg <jolly@eversberg.eu>
Mon, 2 Oct 2017 16:13:45 +0000 (18:13 +0200)
lib/colorize.c

index e46f2d9..d399792 100644 (file)
@@ -101,8 +101,10 @@ int colorize_prepare(struct colorize *col, int quick, int alloc)
                /* create temporary arrays
                 * copy fist array to level 0 or shrink previous level
                 */
-               if (!quick)
-                       printf(" #%d(w=%d h=%d k=%d)", d, ww, hh, kk); fflush(stdout);
+               if (!quick) {
+                       printf(" #%d(w=%d h=%d k=%d)", d, ww, hh, kk);
+                       fflush(stdout);
+               }
                dimensions[0] = ww;
                dimensions[1] = hh;
                dimensions[2] = last_kk;