0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

test/libmpv_test: fix some stray tabs

This commit is contained in:
Dudemanguy 2024-06-19 23:04:21 -05:00
parent 157566904f
commit 42a4c306ec

View File

@ -71,10 +71,10 @@ static mpv_event *wrap_wait_event(void)
mpv_event *ev = mpv_wait_event(ctx, 1);
if (ev->event_id == MPV_EVENT_NONE) {
continue;
continue;
} else if (ev->event_id == MPV_EVENT_LOG_MESSAGE) {
mpv_event_log_message *msg = (mpv_event_log_message*)ev->data;
printf("[%s:%s] %s", msg->prefix, msg->level, msg->text);
printf("[%s:%s] %s", msg->prefix, msg->level, msg->text);
if (msg->log_level <= MPV_LOG_LEVEL_ERROR)
fail("error was logged");
} else {