From de88de73ad9d13cc2a54668aa4bc6523c196ffa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 3 Oct 2019 15:22:07 +0200 Subject: New upstream version 0.30.7 --- src/VideoSupport.vala | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/VideoSupport.vala') diff --git a/src/VideoSupport.vala b/src/VideoSupport.vala index 857a901..533dfe6 100644 --- a/src/VideoSupport.vala +++ b/src/VideoSupport.vala @@ -232,7 +232,11 @@ public class VideoReader { debug("Thumbnailer timer called"); if (thumbnailer_pid != 0) { debug("Killing thumbnailer process: %d", thumbnailer_pid); +#if VALA_0_40 + Posix.kill(thumbnailer_pid, Posix.Signal.KILL); +#else Posix.kill(thumbnailer_pid, Posix.SIGKILL); +#endif } return false; // Don't call again. } -- cgit v1.2.3