From: Jim Meyering Date: Sun, 4 Mar 2001 03:14:40 +0000 (+0000) Subject: (output_char): Reformat so each statement is on a separate line. X-Git-Tag: TEXTUTILS-2_0_12~5 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=8625974643000b7187de999f4f3ba453c4013404;p=thirdparty%2Fcoreutils.git (output_char): Reformat so each statement is on a separate line. --- diff --git a/src/dd.c b/src/dd.c index 2c334a1349..739f2a6588 100644 --- a/src/dd.c +++ b/src/dd.c @@ -57,10 +57,14 @@ + 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