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);
                }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to