Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-08 03:07:17 +0400
committerEric Andersen <andersen@codepoet.org>2001-05-08 03:07:17 +0400
commitde0ca0cd9ee677a1d465039e30235d0fe63e5558 (patch)
tree9d1b348ff2b00a3abd513de1eebce140153c5f87 /coreutils/cut.c
parentf3f9f3efa725f487e336662289a5d78de9ef38e9 (diff)
Silence cut so it doesn't whine during compilation
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r--coreutils/cut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c
index efcb325df..69f8010d2 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -75,7 +75,7 @@ static void decompose_list(const char *list)
/* handle multi-value cases */
else if (nminus == 1) {
/* handle 'N-' case */
- if (last_char_is(list,'-')) {
+ if (last_char_is((char *)list,'-')) {
startpos = strtol(list, &ptr, 10);
}
/* handle '-M' case */