mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Fix copy/paste error from before git history in UpdateCurrentTimeIf()
See UpdateCurrentTime() for reference. I don't know what bug this might trigger, but it wouldn't hurt to fix this. Signed-off-by: Chase Douglas <chase.douglas@canonical.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
committed by
Chase Douglas
parent
6ca30cb33e
commit
8dfd98245d
@@ -214,7 +214,7 @@ UpdateCurrentTimeIf(void)
|
||||
systime.milliseconds = GetTimeInMillis();
|
||||
if (systime.milliseconds < currentTime.milliseconds)
|
||||
systime.months++;
|
||||
if (*checkForInput[0] == *checkForInput[1])
|
||||
if (CompareTimeStamps(systime, currentTime) == LATER)
|
||||
currentTime = systime;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user