aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2005-05-02 10:23:03 +0000
committerXin LI <delphij@FreeBSD.org>2005-05-02 10:23:03 +0000
commit05195f8d61c930352cd480f34c64826d36afea64 (patch)
tree149f8a5b912023474ee5ed1fc4ec3cf2202ffa35 /usr.bin
parent48ce8ca1aab1454e37927719dd6f4f0ec3d3dc49 (diff)
downloadsrc-05195f8d61c930352cd480f34c64826d36afea64.tar.gz
src-05195f8d61c930352cd480f34c64826d36afea64.zip
Consistently use signed char so gcc4 won't complain
Notes
Notes: svn path=/head/; revision=145798
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/compress/zopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/compress/zopen.c b/usr.bin/compress/zopen.c
index b52c8244639f..091a2e3b14a3 100644
--- a/usr.bin/compress/zopen.c
+++ b/usr.bin/compress/zopen.c
@@ -241,7 +241,7 @@ zwrite(void *cookie, const char *wbp, int num)
code_int i;
int c, disp;
struct s_zstate *zs;
- const u_char *bp;
+ const char *bp;
u_char tmp;
int count;