From c2026d6193c04696f2a210ccd5fbfb8a03002fe5 Mon Sep 17 00:00:00 2001 From: pfg Date: Thu, 29 May 2014 19:43:43 +0000 Subject: Minor style knit. --- usr.bin/printf/printf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'usr.bin/printf') diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 5be9d05..452711e 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -456,8 +456,7 @@ mknum(char *str, char ch) len = strlen(str) + 2; if (len > copy_size) { newlen = ((len + 1023) >> 10) << 10; - if ((newcopy = realloc(copy, newlen)) == NULL) - { + if ((newcopy = realloc(copy, newlen)) == NULL) { warnx("%s", strerror(ENOMEM)); return (NULL); } -- cgit v1.1