case 'n':
*(va_arg(ap, int *)) = cc;
- break;
+ goto skip_output;
/*
* Always extract the argument as a "char *" pointer. We
if (adjust_width && adjust == LEFT && min_width > s_len)
PAD(min_width, s_len, pad_char);
}
+skip_output:
fmt++;
}
odp->nextb = sp;
case 'n':
*(va_arg(ap, int *)) = xbuf->len;
- break;
+ goto skip_output;
/*
* Always extract the argument as a "char *" pointer. We
if (adjust_width && adjust == LEFT && min_width > s_len)
PAD(xbuf, min_width - s_len, pad_char);
}
+skip_output:
fmt++;
}
return;