diff options
author | delphij <delphij@FreeBSD.org> | 2005-05-02 10:23:03 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2005-05-02 10:23:03 +0000 |
commit | 60c19065cdb40755c9c211ce2bf3350dec104a2d (patch) | |
tree | 149f8a5b912023474ee5ed1fc4ec3cf2202ffa35 /usr.bin | |
parent | 4497410a323f8723fe74dd5573e4c1ce0027d5a3 (diff) | |
download | FreeBSD-src-60c19065cdb40755c9c211ce2bf3350dec104a2d.zip FreeBSD-src-60c19065cdb40755c9c211ce2bf3350dec104a2d.tar.gz |
Consistently use signed char so gcc4 won't complain
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/compress/zopen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/compress/zopen.c b/usr.bin/compress/zopen.c index b52c824..091a2e3 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; |