From 24868979f71a7e132ae0bd721ad1a488489d7741 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Sat, 26 Jan 2013 12:51:32 -0600 Subject: [PATCH] more portable type --- libs/sofia-sip/libsofia-sip-ua/sdp/sdp_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;