summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-03 15:50:00 +0100
committerwm4 <wm4@nowhere>2016-01-03 15:50:00 +0100
commitfa315705be4e2850895d19aee6f16d1a1817ad08 (patch)
tree76f65485b0b0504564a6a70a0a344a1970189210 /video
parent2c3f4850b828bfbc45d4b3a4091f2ac4b39061a6 (diff)
downloadmpv-fa315705be4e2850895d19aee6f16d1a1817ad08.tar.bz2
mpv-fa315705be4e2850895d19aee6f16d1a1817ad08.tar.xz
x11: silence xdg-screensaver failure message
Diffstat (limited to 'video')
-rw-r--r--video/out/x11_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index dd7565512e..11b0c12454 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -497,8 +497,8 @@ static void *screensaver_thread(void *arg)
char *args[] = {"xdg-screensaver", "reset", NULL};
int status = mp_subprocess(args, NULL, NULL, NULL, NULL, &(char*){0});
if (status) {
- MP_WARN(x11, "Disabling screensaver failed (%d). Make sure the "
- "xdg-screensaver script is installed.\n", status);
+ MP_VERBOSE(x11, "Disabling screensaver failed (%d). Make sure the "
+ "xdg-screensaver script is installed.\n", status);
break;
}
}