aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2014-05-29 19:43:43 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2014-05-29 19:43:43 +0000
commitea1a630ade48da082272cd8f901c6e718265589a (patch)
treee94843581e2f41af078e8b9596c98dc684fb4205 /usr.bin
parentb437b06c798ae32193ea6df2b11ad559b109742f (diff)
downloadsrc-ea1a630ade48da082272cd8f901c6e718265589a.tar.gz
src-ea1a630ade48da082272cd8f901c6e718265589a.zip
Minor style knit.
Notes
Notes: svn path=/head/; revision=266853
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/printf/printf.c3
1 files changed, 1 insertions, 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);
}