1
mirror of https://github.com/mpv-player/mpv synced 2024-11-03 03:19:24 +01:00

wayland: fix typo in error message

This commit is contained in:
Alessandro Ghedini 2015-12-27 19:20:59 +01:00
parent d85753b79e
commit 1f62f38106

View File

@ -1135,7 +1135,7 @@ static int vo_wayland_check_events (struct vo *vo)
if (poll(&fd, 1, 0) > 0) {
if (fd.revents & POLLERR) {
MP_ERR(wl, "error occured on the drag&drop fd\n");
MP_ERR(wl, "error occurred on the drag&drop fd\n");
close(wl->input.dnd_fd);
wl->input.dnd_fd = -1;
}