diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-09 18:07:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-09 18:07:15 +0000 |
commit | 023dc6798e05373bf33d64221bbe6a7265734c34 (patch) | |
tree | c111bcbb60f73790b29f7dd4f030f8c1e87b29a8 /networking/sendmail.c | |
parent | 98636eb08c5ecc216e18970e11f7021206ac9b04 (diff) |
fix warnings about pointer signedness
Diffstat (limited to 'networking/sendmail.c')
-rw-r--r-- | networking/sendmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/sendmail.c b/networking/sendmail.c index 242bb0eaf..f37d97f73 100644 --- a/networking/sendmail.c +++ b/networking/sendmail.c @@ -533,7 +533,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv) // so we reuse md5 space instead of xzalloc(16*2+1) #define md5_hex ((uint8_t *)&md5) // uint8_t *md5_hex = (uint8_t *)&md5; - *bin2hex(md5_hex, s, 16) = '\0'; + *bin2hex((char *)md5_hex, s, 16) = '\0'; // APOP s = xasprintf("%s %s", opt_user, md5_hex); #undef md5_hex |