* precision requires the argument be an integer, not size_t
This commit is contained in:
parent
7fa0fcafca
commit
57ec574af7
@ -983,7 +983,7 @@ static void showfiles(void)
|
||||
|
||||
for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
|
||||
printf("%s%-*s", matches[n],
|
||||
column_width - strlen(matches[n]), "");
|
||||
(int)(column_width - strlen(matches[n])), "");
|
||||
}
|
||||
printf("%s\n", matches[n]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user