diff options
author | Tonya Souther <tonya.souther@gmail.com> | 2013-01-29 22:12:20 -0600 |
---|---|---|
committer | Tonya Souther <tonya.souther@gmail.com> | 2013-01-29 22:12:20 -0600 |
commit | ada2d07572ca51159004eec82721d3dabe735bb8 (patch) | |
tree | e264760fdd0de42448b74968e3126e83a21c8f9d /indra/newview/llpanelface.cpp | |
parent | 1751c965ba1ffd1a89a3b94542624e70cbde1060 (diff) |
Compile fix for potentially uninitialized variable.
Diffstat (limited to 'indra/newview/llpanelface.cpp')
-rw-r--r-- | indra/newview/llpanelface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index f0daa96e19..024265b377 100644 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -666,7 +666,7 @@ void LLPanelFace::getState() { LLGLenum get(LLViewerObject* object, S32 te_index) { - LLGLenum image_format; + LLGLenum image_format = GL_RGB; LLViewerTexture* image = object->getTEImage(te_index); if (image) image_format = image->getPrimaryFormat(); |