]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(output_char): Reformat so each statement is on a separate line.
authorJim Meyering <jim@meyering.net>
Sun, 4 Mar 2001 03:14:40 +0000 (03:14 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 4 Mar 2001 03:14:40 +0000 (03:14 +0000)
src/dd.c

index 2c334a134996096df6c14a576c930644cf2d2f65..739f2a658887580cf9b91b6e2f8ab6e6bdd4af49 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
                           + ROUND_UP_OFFSET ((char *)(Ptr) - (char *)0, (M)))
 
 #define max(a, b) ((a) > (b) ? (a) : (b))
-#define output_char(c) \
-  do { \
-  obuf[oc++] = (c); if (oc >= output_blocksize) write_output (); \
-  } while (0)
+#define output_char(c)                         \
+  do                                           \
+    {                                          \
+      obuf[oc++] = (c);                                \
+      if (oc >= output_blocksize)              \
+       write_output ();                        \
+    }                                          \
+  while (0)
 
 /* Default input and output blocksize. */
 #define DEFAULT_BLOCKSIZE 512