Commit b6e36a42 authored by Stefano Sabatini's avatar Stefano Sabatini

lavu/parseutils: remove unused gcd variable in av_parse_ratio()

Fix warning.
parent cb0add3c
......@@ -47,7 +47,6 @@ int av_parse_ratio(AVRational *q, const char *str, int max,
{
char c;
int ret;
int64_t gcd;
if (sscanf(str, "%d:%d%c", &q->num, &q->den, &c) != 2) {
double d;
......
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