diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp
index 42eca88132f549ee27dbf2c31b1d3251dc1eb52d..b192cef1d9e7c27f74e6fe7e548d89ba152b4b11 100644
--- a/indra/newview/llsnapshotlivepreview.cpp
+++ b/indra/newview/llsnapshotlivepreview.cpp
@@ -220,7 +220,7 @@ void LLSnapshotLivePreview::updateSnapshot(BOOL new_snapshot, BOOL new_thumbnail
 // Return true if the quality has been changed, false otherwise
 bool LLSnapshotLivePreview::setSnapshotQuality(S32 quality, bool set_by_user)
 {
-	llclamp(quality, 0, 100);
+    quality = llclamp(quality, 0, 100);
 	if (quality != mSnapshotQuality)
 	{
 		mSnapshotQuality = quality;