Date: Thu, 29 May 2014 19:43:43 +0000 (UTC) From: "Pedro F. Giffuni" <pfg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266853 - head/usr.bin/printf Message-ID: <201405291943.s4TJhhYU080210@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pfg Date: Thu May 29 19:43:43 2014 New Revision: 266853 URL: http://svnweb.freebsd.org/changeset/base/266853 Log: Minor style knit. Modified: head/usr.bin/printf/printf.c Modified: head/usr.bin/printf/printf.c ============================================================================== --- head/usr.bin/printf/printf.c Thu May 29 19:17:10 2014 (r266852) +++ head/usr.bin/printf/printf.c Thu May 29 19:43:43 2014 (r266853) @@ -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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405291943.s4TJhhYU080210>