From: Lubomir Rintel Date: Fri, 29 Apr 2016 09:45:07 +0000 (+0200) Subject: parse-util: fix conversion from size_t on s390 (#3147) X-Git-Tag: v230~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4196edfbf8edcee8771be5a71b69c95ea63d604;p=thirdparty%2Fsystemd.git parse-util: fix conversion from size_t on s390 (#3147) On s390 size_t is an unsigned long, nor an unsigned int. They both are of the same size and can be cast to each other safely, but the compiler still seems unhappy about incompatible pointers. Fixes: 7c2da2ca8 --- diff --git a/src/basic/parse-util.h b/src/basic/parse-util.h index c407263e166..7dc579a159f 100644 --- a/src/basic/parse-util.h +++ b/src/basic/parse-util.h @@ -93,7 +93,7 @@ static inline int safe_atoli(const char *s, long int *ret_u) { #if SIZE_MAX == UINT_MAX static inline int safe_atozu(const char *s, size_t *ret_u) { assert_cc(sizeof(size_t) == sizeof(unsigned)); - return safe_atou(s, ret_u); + return safe_atou(s, (unsigned *) ret_u); } #else static inline int safe_atozu(const char *s, size_t *ret_u) {