Skip to content

Commit 0e93eef

Browse files
committedMar 13, 2015
client.cpp: typo fix and break; fix to make some compilers happy
1 parent 083c8c7 commit 0e93eef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎src/client.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ void Client::interact(u8 action, const PointedThing& pointed)
951951
{
952952
if(m_state != LC_Ready) {
953953
errorstream << "Client::interact() "
954-
"cancelled (not connected)"
954+
"Canceled (not connected)"
955955
<< std::endl;
956956
return;
957957
}
@@ -1296,6 +1296,7 @@ Inventory* Client::getInventory(const InventoryLocation &loc)
12961296
break;
12971297
default:
12981298
FATAL_ERROR("Invalid inventory location type.");
1299+
break;
12991300
}
13001301
return NULL;
13011302
}

0 commit comments

Comments
 (0)
Please sign in to comment.