From: Anthony Minessale Date: Sat, 26 Jan 2013 18:51:32 +0000 (-0600) Subject: more portable type X-Git-Tag: v1.5.1~383 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24868979f71a7e132ae0bd721ad1a488489d7741;p=thirdparty%2Ffreeswitch.git more portable type --- diff --git a/libs/sofia-sip/libsofia-sip-ua/sdp/sdp_parse.c b/libs/sofia-sip/libsofia-sip-ua/sdp/sdp_parse.c index 16fa202d09..647d0dddf1 100644 --- a/libs/sofia-sip/libsofia-sip-ua/sdp/sdp_parse.c +++ b/libs/sofia-sip/libsofia-sip-ua/sdp/sdp_parse.c @@ -1803,7 +1803,7 @@ static int parse_ul(sdp_parser_t *p, char **r, } #if !HAVE_STRTOULL -unsigned longlong strtoull(char const *string, char **return_end, int base); +unsigned long long strtoull(char const *string, char **return_end, int base); #endif /* @@ -1812,7 +1812,7 @@ unsigned longlong strtoull(char const *string, char **return_end, int base); static int parse_ull(sdp_parser_t *p, char **r, uint64_t *result, uint64_t max) { - unsigned longlong ull; + unsigned long long ull; char *s = *r;