svn commit: r266853 - head/usr.bin/printf

Pedro F. Giffuni pfg at FreeBSD.org
Thu May 29 19:43:43 UTC 2014


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);
 		}


More information about the svn-src-head mailing list