[Warnings] Fix the "no biggie" warnings

Thanks to friti for providing the pastebin~
This commit is contained in:
Inusaito Sayori
2014-08-05 00:31:52 -04:00
parent 409128b07f
commit e57a7b6f3b
3 changed files with 5 additions and 5 deletions

View File

@@ -286,7 +286,7 @@ void LLTemplateMessageReader::getU8(const char *block, const char *var,
void LLTemplateMessageReader::getBOOL(const char *block, const char *var,
BOOL &b, S32 blocknum )
{
U8 value;
U8 value(0);
getData(block, var, &value, sizeof(U8), blocknum);
b = (BOOL) value;
}