parseutils: fix const removal warning

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>
This commit is contained in:
Mans Rullgard 2012-10-11 14:12:34 +01:00
parent e578f8f468
commit 15ba7f6525
1 changed files with 1 additions and 2 deletions

View 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);