aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llworldmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llworldmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llworldmap.cpp b/linden/indra/newview/llworldmap.cpp
index f2a2c90..db7ac19 100644
--- a/linden/indra/newview/llworldmap.cpp
+++ b/linden/indra/newview/llworldmap.cpp
@@ -491,7 +491,7 @@ void LLWorldMap::processMapBlockReply(LLMessageSystem* msg, void**)
491 U32 agent_flags; 491 U32 agent_flags;
492 msg->getU32Fast(_PREHASH_AgentData, _PREHASH_Flags, agent_flags); 492 msg->getU32Fast(_PREHASH_AgentData, _PREHASH_Flags, agent_flags);
493 493
494 if (agent_flags < 0 || agent_flags >= MAP_SIM_IMAGE_TYPES) 494 if ((S32)agent_flags < 0 || agent_flags >= MAP_SIM_IMAGE_TYPES)
495 { 495 {
496 llwarns << "Invalid map image type returned! " << agent_flags << llendl; 496 llwarns << "Invalid map image type returned! " << agent_flags << llendl;
497 return; 497 return;