diff options
author | worktycho <work.tycho@gmail.com> | 2015-09-25 17:45:11 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-09-25 17:45:11 +0200 |
commit | 335374376bff16459eb3e3585a93f931e1b3c306 (patch) | |
tree | 3b6665c38ce5881b0d8345ee7bc495a5b97a0457 /src/Bindings/ManualBindings.h | |
parent | Merge pull request #2491 from cuberite/FixLilypadPopout (diff) | |
parent | Maked it compileable for clang-3.7 (diff) | |
download | cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar.gz cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar.bz2 cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar.lz cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar.xz cuberite-335374376bff16459eb3e3585a93f931e1b3c306.tar.zst cuberite-335374376bff16459eb3e3585a93f931e1b3c306.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Bindings/ManualBindings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/ManualBindings.h b/src/Bindings/ManualBindings.h index 38f7ac5f1..e2556bafd 100644 --- a/src/Bindings/ManualBindings.h +++ b/src/Bindings/ManualBindings.h @@ -400,7 +400,7 @@ public: L.GetStackValues(1, Self, Box, FnRef); if ((Self == nullptr) || (Box == nullptr)) { - LOGWARNING("Invalid world (%p) or boundingbox (%p)", Self, Box); + LOGWARNING("Invalid world (%p) or boundingbox (%p)", static_cast<void *>(Self), static_cast<void *>(Box)); L.LogStackTrace(); return 0; } |