diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-14 15:18:57 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-14 15:18:57 +0000 |
commit | 93c0d9f090eb17dc3c42c341af7aad19d8c87f52 (patch) | |
tree | d5e6cff08bb599e6a3694528ac92d377962beee5 | |
parent | fad04fdd12604a46eff62875343515c33e1863c6 (diff) | |
download | busybox-93c0d9f090eb17dc3c42c341af7aad19d8c87f52.tar.gz |
The result of getopt() should not be converted to "char" - it breaks on PPC
-rw-r--r-- | cp_mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ rm_Action(const char *fileName, struct stat *statbuf, void* junk) extern int cp_mv_main(int argc, char **argv) { volatile int i; - char c; + int c; if (*applet_name == 'c' && *(applet_name + 1) == 'p') dz_i = is_cp; |