Style cleanups for printf.

PR:		bin/152934
Approved by:	jhb (mentor)
Obtained from:	Illumos
MFC after:	2 weeks
This commit is contained in:
Pedro F. Giffuni 2012-01-12 20:30:20 +00:00
parent 7983103ae6
commit ab71f27172

View File

@ -357,10 +357,10 @@ mknum(char *str, char ch)
static int
escape(char *fmt, int percent, size_t *len)
{
char *save, *store;
int value, c;
char *save, *store, c;
int value;
for (save = store = fmt; (c = *fmt); ++fmt, ++store) {
for (save = store = fmt; ((c = *fmt) != 0); ++fmt, ++store) {
if (c != '\\') {
*store = c;
continue;
@ -414,7 +414,7 @@ escape(char *fmt, int percent, size_t *len)
*store++ = '%';
*store = '%';
} else
*store = value;
*store = (char)value;
break;
default:
*store = *fmt;