1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-18 04:51:52 +00:00

vd_lavc: coding style

This commit is contained in:
wm4 2017-12-02 00:45:03 +01:00
parent 627fa5aae0
commit 47f7920006

View File

@ -226,7 +226,7 @@ static int hwdec_compare(const void *p1, const void *p2)
if (h1->auto_pos > h2->auto_pos)
return 1;
else if (h1->auto_pos < h2->auto_pos)
if (h1->auto_pos < h2->auto_pos)
return -1;
return h1->rank < h2->rank ? 1 :-1;
}