From 0e93eefb8f0b6168666821c3951810b5298cefe2 Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Fri, 13 Mar 2015 22:08:41 +0100 Subject: [PATCH] client.cpp: typo fix and break; fix to make some compilers happy --- src/client.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client.cpp b/src/client.cpp index dce89eb1..7d2fab17 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -951,7 +951,7 @@ void Client::interact(u8 action, const PointedThing& pointed) { if(m_state != LC_Ready) { errorstream << "Client::interact() " - "cancelled (not connected)" + "Canceled (not connected)" << std::endl; return; } @@ -1296,6 +1296,7 @@ Inventory* Client::getInventory(const InventoryLocation &loc) break; default: FATAL_ERROR("Invalid inventory location type."); + break; } return NULL; }