__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 MFC after: 5 days
This commit is contained in:
parent
fc32530227
commit
832474ebd4
@ -260,8 +260,8 @@ __printf_render_int(struct __printf_io *io, const struct printf_info *pi, const
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user