diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2011-11-30 11:20:26 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2011-11-30 11:20:26 -0700 |
commit | 83c3d378275e4da6f4aa0b148853abf770f73e86 (patch) | |
tree | 9f81f8e5e7b87b260ac2c52e1a943e1d05e47153 /indra/llimage/llimage.cpp | |
parent | 3fc4c14464c1b8152108a5332b754d5b2671e54d (diff) |
trivial: change a log info for memory failure for LLImageBase
Diffstat (limited to 'indra/llimage/llimage.cpp')
-rw-r--r-- | indra/llimage/llimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index c239e3df88..56e01ac851 100644 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -195,7 +195,7 @@ U8* LLImageBase::allocateData(S32 size) mData = (U8*)ALLOCATE_MEM(sPrivatePoolp, size); if (!mData) { - llwarns << "allocate image data: " << size << llendl; + llwarns << "Failed to allocate image data size [" << size << "]" << llendl; size = 0 ; mWidth = mHeight = 0 ; mBadBufferAllocation = true ; |