diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-07 23:07:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-07 23:07:17 +0000 |
commit | de0ca0cd9ee677a1d465039e30235d0fe63e5558 (patch) | |
tree | 9d1b348ff2b00a3abd513de1eebce140153c5f87 /coreutils | |
parent | f3f9f3efa725f487e336662289a5d78de9ef38e9 (diff) | |
download | busybox-de0ca0cd9ee677a1d465039e30235d0fe63e5558.tar.gz |
Silence cut so it doesn't whine during compilation
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cut.c | 2 |
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 */ |