diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-08-21 11:44:00 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-08-21 11:44:00 +0000 |
commit | 69f1b22444007e84cb50768fcddb2123c93f623a (patch) | |
tree | b25db0145f175ce7936b8e962e747316e6593c6e | |
parent | 9566fbaeca3b722ad80ab29dba76dc8e1c92a275 (diff) |
PluginUpdater: Try to fix automatically checking after hibernation
git-svn-id: http://svn.miranda-ng.org/main/trunk@5770 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/PluginUpdater/src/Utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp index e92ff760f5..b99789429c 100644 --- a/plugins/PluginUpdater/src/Utils.cpp +++ b/plugins/PluginUpdater/src/Utils.cpp @@ -402,7 +402,7 @@ void InitTimer(int type) LARGE_INTEGER li = {0};
li.QuadPart = -1 * (interval * 10000LL);
- SetWaitableTimer(Timer, &li, 0, TimerAPCProc, NULL, 0);
+ SetWaitableTimer(Timer, &li, interval, TimerAPCProc, NULL, 0);
}
}
|