Commit 79dcd58d authored by Stefano Sabatini's avatar Stefano Sabatini

lavu/parseutils: make small_strptime() return a (non const) char *

This is consistent with the standard definition of strptime().
parent 56200884
......@@ -448,14 +448,14 @@ static int date_get_num(const char **pp,
* function call, or NULL in case the function fails to match all of
* the fmt string and therefore an error occurred
*/
static const char *small_strptime(const char *p, const char *fmt, struct tm *dt)
static char *small_strptime(const char *p, const char *fmt, struct tm *dt)
{
int c, val;
for(;;) {
c = *fmt++;
if (c == '\0') {
return p;
return (char *)p;
} else if (c == '%') {
c = *fmt++;
switch(c) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment