diff options
author | The Aviator <aviator45003@gmail.com> | 2015-05-17 12:45:42 -0400 |
---|---|---|
committer | The Aviator <aviator45003@gmail.com> | 2015-05-17 16:54:32 -0400 |
commit | 79d6ec656d5159551c415c7eff861829801db461 (patch) | |
tree | 6bd0866438a006f24c276ebc2fbe3f0b009471e1 | |
parent | 10127b6540c6c30bdb1bfa4c0d4d4afe30c2f22e (diff) |
Fixed a build warning
Just a mismatched type, improperly done cast.
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 766aeaf8e..656be220f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -814,11 +814,11 @@ int InspIRCd::Run() /* Allow a buffer of two seconds drift on this so that ntpdate etc dont harass admins */ if (TIME.tv_sec < OLDTIME - 2) { - SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)OLDTIME-TIME.tv_sec); + SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %lu secs.", (unsigned long)(OLDTIME-TIME.tv_sec)); } else if (TIME.tv_sec > OLDTIME + 2) { - SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)TIME.tv_sec - OLDTIME); + SNO->WriteToSnoMask('d', "\002EH?!\002 -- Time is jumping FORWARDS! Clock skipped %lu secs.", (unsigned long)(TIME.tv_sec - OLDTIME)); } OLDTIME = TIME.tv_sec; |