summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-22 12:18:14 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-22 12:18:14 -0700
commit97f5effe3a56b9c395b20624b2a141ab84a625f8 (patch)
treea53cd10356d582d0cb572c73600bc77c2fc2417b /src/login
parentfcae49e764093351cb29692286db9ca6afe7a39f (diff)
downloadtmwa-97f5effe3a56b9c395b20624b2a141ab84a625f8.tar.gz
tmwa-97f5effe3a56b9c395b20624b2a141ab84a625f8.tar.bz2
tmwa-97f5effe3a56b9c395b20624b2a141ab84a625f8.tar.xz
tmwa-97f5effe3a56b9c395b20624b2a141ab84a625f8.zip
Fix an overzealous warning on 32-bit systems
Diffstat (limited to 'src/login')
-rw-r--r--src/login/login.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/login.cpp b/src/login/login.cpp
index 031abd7..e09f96b 100644
--- a/src/login/login.cpp
+++ b/src/login/login.cpp
@@ -3792,7 +3792,7 @@ void save_config_in_log(void)
LOGIN_LOG("- to NOT check GM accounts file modifications.\n");
else
LOGIN_LOG("- to check GM accounts file modifications every %lld seconds.\n",
- static_cast<long long>(gm_account_filename_check_timer.count()));
+ maybe_cast<long long>(gm_account_filename_check_timer.count()));
// not necessary to log the 'login_log_filename', we are inside :)