diff options
author | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
commit | c07901e29ed545bbb02e3bddf148fe1104b94e9f (patch) | |
tree | f1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/newview/llworldmap.cpp | |
parent | Second Life viewer sources 1.15.0.2 (diff) | |
download | meta-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.cpp | 2 |
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; |