summaryrefslogtreecommitdiffstats
path: root/src/Root.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-28 16:28:55 +0100
committermadmaxoft <github@xoft.cz>2014-01-28 16:28:55 +0100
commit76457d367338b603808b7821036cf9edc6f95afb (patch)
tree17b93357b910f084d021c5e7d824ebf44abf1b59 /src/Root.cpp
parentFixed a slight bug in RSA encryption code. (diff)
downloadcuberite-76457d367338b603808b7821036cf9edc6f95afb.tar
cuberite-76457d367338b603808b7821036cf9edc6f95afb.tar.gz
cuberite-76457d367338b603808b7821036cf9edc6f95afb.tar.bz2
cuberite-76457d367338b603808b7821036cf9edc6f95afb.tar.lz
cuberite-76457d367338b603808b7821036cf9edc6f95afb.tar.xz
cuberite-76457d367338b603808b7821036cf9edc6f95afb.tar.zst
cuberite-76457d367338b603808b7821036cf9edc6f95afb.zip
Diffstat (limited to '')
-rw-r--r--src/Root.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Root.cpp b/src/Root.cpp
index fa1fdb37a..883bfe76e 100644
--- a/src/Root.cpp
+++ b/src/Root.cpp
@@ -200,7 +200,7 @@ void cRoot::Start(void)
long long finishmseconds = Time.GetNowTime();
finishmseconds -= mseconds;
- LOG("Startup complete, took %i ms!", finishmseconds);
+ LOG("Startup complete, took %lld ms!", finishmseconds);
#ifdef _WIN32
EnableMenuItem(hmenu, SC_CLOSE, MF_ENABLED); // Re-enable close button
#endif