rtsp: fix format string
This commit is contained in:
parent
fe4b415f98
commit
41d36b2584
@ -213,7 +213,7 @@ parse_smpte_time (const gchar * str, GstRTSPTime * time, const gchar * limit)
|
||||
time->type = GST_RTSP_TIME_END;
|
||||
return GST_RTSP_OK;
|
||||
} else {
|
||||
if (sscanf (str, "%02d:%2d:%02d", &hours, &mins, &secs) != 3)
|
||||
if (sscanf (str, "%2d:%2d:%2d", &hours, &mins, &secs) != 3)
|
||||
return GST_RTSP_EINVAL;
|
||||
|
||||
time->type = GST_RTSP_TIME_FRAMES;
|
||||
|
Loading…
x
Reference in New Issue
Block a user