1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-11 09:25:56 +00:00

vo_opengl: fix typo

This commit is contained in:
wm4 2015-01-20 20:36:57 +01:00
parent 5a93dd6245
commit 9f63b9f673

View File

@ -113,7 +113,7 @@ static void check_pattern(struct vo *vo, int item)
p->matches++; p->matches++;
} else { } else {
p->mismatches++; p->mismatches++;
MP_WARN(vo, "wrong pattern, exptected %d got %d (hit: %d, mis: %d)\n", MP_WARN(vo, "wrong pattern, expected %d got %d (hit: %d, mis: %d)\n",
expected, item, p->matches, p->mismatches); expected, item, p->matches, p->mismatches);
} }
} }