mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Cast size_t -> int to satisfy printf %* constraints on the alpha.
This commit is contained in:
parent
11cedf79a8
commit
84982751aa
1 changed files with 1 additions and 1 deletions
|
|
@ -525,7 +525,7 @@ output_word(size_t indent0, size_t indent1, const char *word, size_t length, siz
|
|||
if (indent>0) output_indent(indent);
|
||||
fwrite(output_buffer, 1, x0, stdout);
|
||||
if (x0==0 || (new_x <= max_length && new_x-goal_length <= goal_length-x)) {
|
||||
printf("%*s", pending_spaces, "");
|
||||
printf("%*s", (int)pending_spaces, "");
|
||||
goto write_out_word;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue