diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2017-11-27 01:34:35 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2017-11-27 01:57:17 +0100 |
commit | 106f22920663d0538cad7b39807d01e4d235acc4 (patch) | |
tree | 82503bc32ad13fe7dd0a149f9466661b6988e1f7 /x11-plugins/wmtimer | |
parent | media-plugins/gst-plugins-ladspa: fixing glep73 violation (diff) | |
download | gentoo-106f22920663d0538cad7b39807d01e4d235acc4.tar.gz gentoo-106f22920663d0538cad7b39807d01e4d235acc4.tar.bz2 gentoo-106f22920663d0538cad7b39807d01e4d235acc4.zip |
x11-plugins/wmtimer: remove unused patch
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-plugins/wmtimer')
-rw-r--r-- | x11-plugins/wmtimer/files/wmtimer-counter-fix.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/x11-plugins/wmtimer/files/wmtimer-counter-fix.patch b/x11-plugins/wmtimer/files/wmtimer-counter-fix.patch deleted file mode 100644 index 62f2a5a82795..000000000000 --- a/x11-plugins/wmtimer/files/wmtimer-counter-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- wmtimer.c.orig 2004-01-29 02:45:48.000000000 +0000 -+++ wmtimer.c 2008-10-17 20:49:05.000000000 +0100 -@@ -128,7 +128,8 @@ - switch (mode) - { - case TIMER: -- if (prevSec < thisTime->tm_sec) -+ if ( (prevSec < thisTime->tm_sec) -+ || ((prevSec == 59) && (thisTime->tm_sec == 0))) - { - decrementTimer(); - updateACT(); -@@ -138,7 +139,8 @@ - prevSec = thisTime->tm_sec; - break; - case CHRONO: -- if (prevSec < thisTime->tm_sec) -+ if ( (prevSec < thisTime->tm_sec) -+ || ((prevSec == 59) && (thisTime->tm_sec == 0))) - { - incrementTimer(); - updateACT(); |