avstring: fix "warning: return discards const qualifier from pointer target type"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d2e0a276d5
commit
32de283103
@ -69,11 +69,11 @@ char *av_strnstr(const char *haystack, const char *needle, size_t hay_length)
|
|||||||
{
|
{
|
||||||
size_t needle_len = strlen(needle);
|
size_t needle_len = strlen(needle);
|
||||||
if (!needle_len)
|
if (!needle_len)
|
||||||
return haystack;
|
return (char*)haystack;
|
||||||
while (hay_length >= needle_len) {
|
while (hay_length >= needle_len) {
|
||||||
hay_length--;
|
hay_length--;
|
||||||
if (!memcmp(haystack, needle, needle_len))
|
if (!memcmp(haystack, needle, needle_len))
|
||||||
return haystack;
|
return (char*)haystack;
|
||||||
haystack++;
|
haystack++;
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user