diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-05-07 23:07:17 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-05-07 23:07:17 +0000 |
commit | d7375906c92c82592f8345c759648657636412c8 (patch) | |
tree | 9d1b348ff2b00a3abd513de1eebce140153c5f87 | |
parent | ec0c3d662a554f6c55c26887f2618c337f379840 (diff) | |
download | busybox-w32-d7375906c92c82592f8345c759648657636412c8.tar.gz busybox-w32-d7375906c92c82592f8345c759648657636412c8.tar.bz2 busybox-w32-d7375906c92c82592f8345c759648657636412c8.zip |
Silence cut so it doesn't whine during compilation
git-svn-id: svn://busybox.net/trunk/busybox@2567 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | coreutils/cut.c | 2 | ||||
-rw-r--r-- | cut.c | 2 |
2 files changed, 2 insertions, 2 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) | |||
75 | /* handle multi-value cases */ | 75 | /* handle multi-value cases */ |
76 | else if (nminus == 1) { | 76 | else if (nminus == 1) { |
77 | /* handle 'N-' case */ | 77 | /* handle 'N-' case */ |
78 | if (last_char_is(list,'-')) { | 78 | if (last_char_is((char *)list,'-')) { |
79 | startpos = strtol(list, &ptr, 10); | 79 | startpos = strtol(list, &ptr, 10); |
80 | } | 80 | } |
81 | /* handle '-M' case */ | 81 | /* handle '-M' case */ |
@@ -75,7 +75,7 @@ static void decompose_list(const char *list) | |||
75 | /* handle multi-value cases */ | 75 | /* handle multi-value cases */ |
76 | else if (nminus == 1) { | 76 | else if (nminus == 1) { |
77 | /* handle 'N-' case */ | 77 | /* handle 'N-' case */ |
78 | if (last_char_is(list,'-')) { | 78 | if (last_char_is((char *)list,'-')) { |
79 | startpos = strtol(list, &ptr, 10); | 79 | startpos = strtol(list, &ptr, 10); |
80 | } | 80 | } |
81 | /* handle '-M' case */ | 81 | /* handle '-M' case */ |