style fix

This commit is contained in:
Yuichi Nishiwaki 2015-05-28 01:06:44 +09:00
parent b9dde91123
commit 4bdb17db2f
1 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ pic_get_args(pic_state *pic, const char *format, ...)
/* start dispatching */
va_start(ap, format);
min = paramc + optc < argc ? paramc + optc : argc;
for(i = 1; i < min + 1; i++) {
for (i = 1; i < min + 1; i++) {
c = *format++;
/* skip '|' if exists. This is always safe because of assert and argc check */