diff options
author | Richard Linden <none@none> | 2013-11-06 18:16:57 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2013-11-06 18:16:57 -0800 |
commit | c4fc085f74392d8bd2746134e703edbbbc911012 (patch) | |
tree | a7c3c910d600c0620ec90fd131bf73317a7a8d49 /indra/newview/llsnapshotlivepreview.cpp | |
parent | fe518bde8e6db65d3d6b178c200410b1346639a4 (diff) |
fixed some warnings
Diffstat (limited to 'indra/newview/llsnapshotlivepreview.cpp')
-rw-r--r-- | indra/newview/llsnapshotlivepreview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp index 791d9cf4e0..737f665954 100644 --- a/indra/newview/llsnapshotlivepreview.cpp +++ b/indra/newview/llsnapshotlivepreview.cpp @@ -827,7 +827,7 @@ void LLSnapshotLivePreview::saveTexture() else { LLNotificationsUtil::add("ErrorEncodingSnapshot"); - llwarns << "Error encoding snapshot" << LL_ENDL; + LL_WARNS() << "Error encoding snapshot" << LL_ENDL; } add(LLStatViewer::SNAPSHOT, 1); @@ -853,7 +853,7 @@ void LLSnapshotLivePreview::saveWeb() LLImageJPEG* jpg = dynamic_cast<LLImageJPEG*>(mFormattedImage.get()); if(!jpg) { - llwarns << "Formatted image not a JPEG" << LL_ENDL; + LL_WARNS() << "Formatted image not a JPEG" << LL_ENDL; return; } |