summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2015-12-27 19:20:59 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2015-12-27 19:20:59 +0100
commit1f62f38106e9de88b277e5e8df359d31f544ed08 (patch)
tree90d27ebcd39f9d143ac54cc6da37e592983b2c16 /video
parentd85753b79e4ce0fa7a5ddac5b2ed0cf65f7aecd8 (diff)
downloadmpv-1f62f38106e9de88b277e5e8df359d31f544ed08.tar.bz2
mpv-1f62f38106e9de88b277e5e8df359d31f544ed08.tar.xz
wayland: fix typo in error message
Diffstat (limited to 'video')
-rw-r--r--video/out/wayland_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index 4e9958d79e..b56ea8aa4c 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -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;
}