svn commit: r330097 - stable/10/lib/libc/stdio
Pedro F. Giffuni
pfg at FreeBSD.org
Wed Feb 28 02:49:49 UTC 2018
Author: pfg
Date: Wed Feb 28 02:49:48 2018
New Revision: 330097
URL: https://svnweb.freebsd.org/changeset/base/330097
Log:
MFC r329848:
__printf_render_int(): small type change to match use.
Variable l is consistently used as an int rather than a char.
Sort names while here.
Obtained from: Apple's Libc-1244.30.3
Modified:
stable/10/lib/libc/stdio/xprintf_int.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/libc/stdio/xprintf_int.c
==============================================================================
--- stable/10/lib/libc/stdio/xprintf_int.c Wed Feb 28 02:49:00 2018 (r330096)
+++ stable/10/lib/libc/stdio/xprintf_int.c Wed Feb 28 02:49:48 2018 (r330097)
@@ -258,8 +258,8 @@ __printf_render_int(struct __printf_io *io, const stru
const union arg *argp;
char buf[BUF];
char *p, *pe;
- char ns, l;
- int rdx, sign, zext, ngrp;
+ char ns;
+ int l, ngrp, rdx, sign, zext;
const char *nalt, *digit;
char thousands_sep; /* locale specific thousands separator */
const char *grouping; /* locale specific numeric grouping rules */
More information about the svn-src-stable
mailing list