From ea1a630ade48da082272cd8f901c6e718265589a Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Thu, 29 May 2014 19:43:43 +0000 Subject: [PATCH] Minor style knit. --- usr.bin/printf/printf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 5be9d0530ffa..452711e1e39a 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); }