OSDN Git Service

parseutils: fix const removal warning
authorMans Rullgard <mans@mansr.com>
Thu, 11 Oct 2012 13:12:34 +0000 (14:12 +0100)
committerMans Rullgard <mans@mansr.com>
Thu, 11 Oct 2012 17:00:27 +0000 (18:00 +0100)
The const qualifier is still removed although it happens inside
the strtol() function so no warning is generated.

Fixes:
libavutil/parseutils.c:110:11: warning: assignment discards qualifiers from pointer target type

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavutil/parseutils.c

index b51f2e8..23fa80c 100644 (file)
@@ -107,8 +107,7 @@ int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str)
         }
     }
     if (i == n) {
-        p = str;
-        width = strtol(p, &p, 10);
+        width = strtol(str, &p, 10);
         if (*p)
             p++;
         height = strtol(p, &p, 10);