diff options
Diffstat (limited to 'src/Entities/Player.cpp')
-rw-r--r-- | src/Entities/Player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Player.cpp b/src/Entities/Player.cpp index 910ad4c0e..d35b92296 100644 --- a/src/Entities/Player.cpp +++ b/src/Entities/Player.cpp @@ -150,7 +150,7 @@ cPlayer::~cPlayer(void) LOGINFO("Player %s has left the game", GetName().c_str()); } - LOGD("Deleting cPlayer \"%s\" at %p, ID %d", GetName().c_str(), this, GetUniqueID()); + LOGD("Deleting cPlayer \"%s\" at %p, ID %d", GetName().c_str(), static_cast<void *>(this), GetUniqueID()); // Notify the server that the player is being destroyed cRoot::Get()->GetServer()->PlayerDestroying(this); @@ -162,7 +162,7 @@ cPlayer::~cPlayer(void) delete m_InventoryWindow; m_InventoryWindow = nullptr; - LOGD("Player %p deleted", this); + LOGD("Player %p deleted", static_cast<void *>(this)); } |