aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/buf.h
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2004-11-30 17:46:29 +0000
committerHartmut Brandt <harti@FreeBSD.org>2004-11-30 17:46:29 +0000
commite6417f6fe2ab9ece408075f315a2d958f255a020 (patch)
tree056a9516097226d7d6992273b2586fdf619c382c /usr.bin/make/buf.h
parentf14eed08c0ce0ddaee70ee7ebf6c3d5ea7f54cdb (diff)
Notes
Diffstat (limited to 'usr.bin/make/buf.h')
-rw-r--r--usr.bin/make/buf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/buf.h b/usr.bin/make/buf.h
index 28403ccd761c..4d075e07326c 100644
--- a/usr.bin/make/buf.h
+++ b/usr.bin/make/buf.h
@@ -62,7 +62,7 @@ typedef struct Buffer {
/* Buf_AddByte adds a single byte to a buffer. */
#define Buf_AddByte(bp, byte) \
- (void) (--(bp)->left <= 0 ? Buf_OvAddByte(bp, byte), 1 : \
+ (void)(--(bp)->left <= 0 ? Buf_OvAddByte(bp, byte), 1 : \
(*(bp)->inPtr++ = (byte), *(bp)->inPtr = 0), 1)
#define BUF_ERROR 256