mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 14:00:30 +00:00
stdio-common/printf-prs.c: Reword comment
'this' can be understood as the current parameter, but in this case it is meaning the other one, the one holding the width/precission. 'it' better describes that parameter, differentiating it from the one corresponding to the current specifier. Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com> Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
parent
bfddda2570
commit
8786bf6eb6
@ -72,11 +72,11 @@ parse_printf_format (const char *fmt, size_t n, int *argtypes)
|
||||
/* Parse this spec. */
|
||||
nargs += __parse_one_specmb (f, nargs, &spec, &max_ref_arg);
|
||||
|
||||
/* If the width is determined by an argument this is an int. */
|
||||
/* If the width is determined by an argument, it is an int. */
|
||||
if (spec.width_arg != -1 && (size_t) spec.width_arg < n)
|
||||
argtypes[spec.width_arg] = PA_INT;
|
||||
|
||||
/* If the precision is determined by an argument this is an int. */
|
||||
/* If the precision is determined by an argument, it is an int. */
|
||||
if (spec.prec_arg != -1 && (size_t) spec.prec_arg < n)
|
||||
argtypes[spec.prec_arg] = PA_INT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user