diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-24 14:16:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-24 14:16:28 +0000 |
commit | 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 (patch) | |
tree | b6b30a570093f5a6a57b5bd8317687b5ee9ee0b3 /archival | |
parent | 1c1f5d30477e9c845c1d08b2390bd889f6b1d018 (diff) | |
download | busybox-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.tar.gz |
Fix up some signed char vs int issues that show up on powerpc.
Diffstat (limited to 'archival')
-rw-r--r-- | archival/dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 18742e8f6..0010df537 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -804,7 +804,7 @@ extern int dpkg_main(int argc, char **argv) package_t *p, *packages = NULL; void *status = NULL; - char opt = 0; + int opt = 0; int optflag = 0; while ((opt = getopt(argc, argv, "iruc")) != -1) { |