diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-11 22:43:14 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-11 22:43:14 +0100 |
commit | 7e6ee7ef8158a037c11405986513aa344ce68f42 (patch) | |
tree | f00f9095be3708fafcb68a370042633740ef5f0d /src/World.cpp | |
parent | Fixed a load of format string errors (diff) | |
download | cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar.gz cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar.bz2 cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar.lz cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar.xz cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.tar.zst cuberite-7e6ee7ef8158a037c11405986513aa344ce68f42.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World.cpp b/src/World.cpp index a9db6bf00..520ed9ae7 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -103,7 +103,7 @@ protected: { for (;;) { - LOG("%d chunks to load, %d chunks to generate", + LOG("%zu chunks to load, %d chunks to generate", m_World->GetStorage().GetLoadQueueLength(), m_World->GetGenerator().GetQueueLength() ); @@ -155,7 +155,7 @@ protected: { for (;;) { - LOG("%d chunks remaining to light", m_Lighting->GetQueueLength() + LOG("%zu chunks remaining to light", m_Lighting->GetQueueLength() ); // Wait for 2 sec, but be "reasonably wakeable" when the thread is to finish |