Date: Wed, 28 Feb 2018 02:49:00 +0000 (UTC) From: "Pedro F. Giffuni" <pfg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r330096 - stable/11/lib/libc/stdio Message-ID: <201802280249.w1S2n00r092172@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pfg Date: Wed Feb 28 02:49:00 2018 New Revision: 330096 URL: https://svnweb.freebsd.org/changeset/base/330096 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/11/lib/libc/stdio/xprintf_int.c Directory Properties: stable/11/ (props changed) Modified: stable/11/lib/libc/stdio/xprintf_int.c ============================================================================== --- stable/11/lib/libc/stdio/xprintf_int.c Wed Feb 28 02:39:38 2018 (r330095) +++ stable/11/lib/libc/stdio/xprintf_int.c Wed Feb 28 02:49:00 2018 (r330096) @@ -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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802280249.w1S2n00r092172>