From: Martin Storsjö Date: Fri, 17 Jun 2011 07:08:23 +0000 (+0300) Subject: udp: Fix a compilation warning X-Git-Tag: n0.9~939^2~124 X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=5d62d0b114807cc143079a8a0430b86d585ab606;ds=sidebyside udp: Fix a compilation warning This fixes this compilation warning, by making endptr a non-const pointer, as required by strtol: In function ‘udp_open’: warning: passing argument 2 of ‘strtol’ from incompatible pointer type Signed-off-by: Martin Storsjö --- diff --git a/libavformat/udp.c b/libavformat/udp.c index 724ff0197d..bd95a811de 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -328,7 +328,7 @@ static int udp_open(URLContext *h, const char *uri, int flags) p = strchr(uri, '?'); if (p) { if (av_find_info_tag(buf, sizeof(buf), "reuse", p)) { - const char *endptr=NULL; + char *endptr = NULL; s->reuse_socket = strtol(buf, &endptr, 10); /* assume if no digits were found it is a request to enable it */ if (buf == endptr)