diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-29 22:34:20 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-29 22:42:39 +0100 |
commit | 42d04ae6ab017b65c6721dd4e9823c34b3656229 (patch) | |
tree | 9140beb0f236bcf2cc078b5051b316f618417355 /isofs/rr.c | |
parent | 263af41f25779c36585d6c17668a15fa07163c4e (diff) |
fix compiler warnings in hurd/isofs
* isofs/rr.c (rrip_work): Use unsigned char.
* isofs/rr.h: Use unsigned char instead of char.
Diffstat (limited to 'isofs/rr.c')
-rw-r--r-- | isofs/rr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ rrip_work (struct dirrect *dr, struct rrip_lookup *rr, { struct dirrect *p; off_t filestart; - char *c; + unsigned char *c; error_t err; /* Look at the first directory entry in root. */ |