aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llworldmap.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:56 -0500
committerJacek Antonelli2008-08-15 23:44:56 -0500
commitc07901e29ed545bbb02e3bddf148fe1104b94e9f (patch)
treef1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/newview/llworldmap.cpp
parentSecond Life viewer sources 1.15.0.2 (diff)
downloadmeta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.zip
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.gz
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.bz2
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.xz
Second Life viewer sources 1.15.1.3
Diffstat (limited to 'linden/indra/newview/llworldmap.cpp')
-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;