* precision requires the argument be an integer, not size_t

This commit is contained in:
Mike Frysinger 2006-12-28 21:41:09 +00:00
parent 7fa0fcafca
commit 57ec574af7

View File

@ -983,7 +983,7 @@ static void showfiles(void)
for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) { for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
printf("%s%-*s", matches[n], printf("%s%-*s", matches[n],
column_width - strlen(matches[n]), ""); (int)(column_width - strlen(matches[n])), "");
} }
printf("%s\n", matches[n]); printf("%s\n", matches[n]);
} }