From bd85887dafbfb2bf5d64ee9e47d33cf6e8accc3f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 26 Jul 1998 20:09:25 +0000 Subject: (split_3): Add cast to placate irix4's cc. From Kaveh Ghazi. --- src/md5sum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/md5sum.c b/src/md5sum.c index 5c8410e32..c889cc447 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -152,7 +152,7 @@ split_3 (char *s, size_t s_len, unsigned char **u, int *binary, char **w) ++i; filename_has_newline = 1; } - *u = &s[i]; + *u = (unsigned char *) &s[i]; /* The first field has to be the 32-character hexadecimal representation of the message digest. If it is not followed -- cgit v1.2.3-54-g00ecf