aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-12-28 21:41:09 +0000
committerMike Frysinger <vapier@gentoo.org>2006-12-28 21:41:09 +0000
commit57ec574af7ea7713e92e60abcdd48a0795152a08 (patch)
treecf0a91645d9a9a926dd042d1331053a6a1ad01d2
parent7fa0fcafca76454effc65f8c3121a37cf0952ff9 (diff)
downloadbusybox-w32-57ec574af7ea7713e92e60abcdd48a0795152a08.tar.gz
busybox-w32-57ec574af7ea7713e92e60abcdd48a0795152a08.tar.bz2
busybox-w32-57ec574af7ea7713e92e60abcdd48a0795152a08.zip
* precision requires the argument be an integer, not size_t
-rw-r--r--shell/cmdedit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 7af73ec6e..32001324f 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -983,7 +983,7 @@ static void showfiles(void)
983 983
984 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) { 984 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
985 printf("%s%-*s", matches[n], 985 printf("%s%-*s", matches[n],
986 column_width - strlen(matches[n]), ""); 986 (int)(column_width - strlen(matches[n])), "");
987 } 987 }
988 printf("%s\n", matches[n]); 988 printf("%s\n", matches[n]);
989 } 989 }