diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-04-01 09:14:52 -0400 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-04-01 09:14:52 -0400 |
commit | 2c584790d0505ebff13d29e9f068aefcffe54f01 (patch) | |
tree | d0633d670e49839da8c45b021553884804d428e8 /indra/llprimitive/llprimitive.cpp | |
parent | cf4d929888025552050e66f3b359e49ed131af8d (diff) |
VWR-24487 make PREHASH variables char const* const
Diffstat (limited to 'indra/llprimitive/llprimitive.cpp')
-rw-r--r-- | indra/llprimitive/llprimitive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/llprimitive.cpp b/indra/llprimitive/llprimitive.cpp index 258c0c3c15..f9ef897aa3 100644 --- a/indra/llprimitive/llprimitive.cpp +++ b/indra/llprimitive/llprimitive.cpp @@ -1216,12 +1216,12 @@ BOOL LLPrimitive::packTEMessage(LLDataPacker &dp) const return FALSE; } -S32 LLPrimitive::unpackTEMessage(LLMessageSystem *mesgsys, char *block_name) +S32 LLPrimitive::unpackTEMessage(LLMessageSystem* mesgsys, char const* block_name) { return(unpackTEMessage(mesgsys,block_name,-1)); } -S32 LLPrimitive::unpackTEMessage(LLMessageSystem *mesgsys, char *block_name, const S32 block_num) +S32 LLPrimitive::unpackTEMessage(LLMessageSystem* mesgsys, char const* block_name, const S32 block_num) { // use a negative block_num to indicate a single-block read (a non-variable block) S32 retval = 0; |