diff options
author | madmaxoft <github@xoft.cz> | 2014-01-28 16:28:55 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-28 16:28:55 +0100 |
commit | 76457d367338b603808b7821036cf9edc6f95afb (patch) | |
tree | 17b93357b910f084d021c5e7d824ebf44abf1b59 /src/Root.cpp | |
parent | Fixed a slight bug in RSA encryption code. (diff) | |
download | cuberite-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 'src/Root.cpp')
-rw-r--r-- | src/Root.cpp | 2 |
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 |