diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-10-03 15:22:07 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-10-03 15:22:07 +0200 |
commit | de88de73ad9d13cc2a54668aa4bc6523c196ffa9 (patch) | |
tree | e46fa083635b12388acefc2950ebccb54f4c5253 /src/VideoSupport.vala | |
parent | b57c8088c3dad237b04bb792c6dade9c470ce9fd (diff) |
New upstream version 0.30.7upstream/0.30.7
Diffstat (limited to 'src/VideoSupport.vala')
-rw-r--r-- | src/VideoSupport.vala | 4 |
1 files changed, 4 insertions, 0 deletions
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. } |