summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Bell <josh@lindenlab.com>2007-12-29 01:45:54 +0000
committerJosh Bell <josh@lindenlab.com>2007-12-29 01:45:54 +0000
commit2ec9ba8446dcdf004b6410cc6b9d641c41b4282b (patch)
treed0ff4434092c7bfc78353bfe4cb757670101931e
parentd06e5e3519f13197dd62bfbabf76f7efcc3d7a79 (diff)
D'oh, try compiling before committing. (If it's any justification, CG was compiling so I could run home...)
-rw-r--r--indra/llcommon/lluri.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lluri.cpp b/indra/llcommon/lluri.cpp
index 0f6ddd9bc6..022742660d 100644
--- a/indra/llcommon/lluri.cpp
+++ b/indra/llcommon/lluri.cpp
@@ -48,7 +48,7 @@ void encode_character(std::ostream& ostr, std::string::value_type val)
ostr << "%" << std::uppercase << std::hex << std::setw(2) << std::setfill('0')
// VWR-4010 Cannot cast to U32 because sign-extension on
// chars > 128 will result in FFFFFFC3 instead of F3.
- << static_cast<S32>(static_cast<U8>(c));
+ << static_cast<S32>(static_cast<U8>(val));
}
// static