__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:
Pedro F. Giffuni 2018-02-23 01:11:57 +00:00
parent 8d48e738b5
commit bc86c883b0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329848

View File

@ -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 */