diff options
author | brad kittenbrink <brad@lindenlab.com> | 2010-11-05 15:08:27 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2010-11-05 15:08:27 -0700 |
commit | a13acfc9073b0e29d84e1633fc11ff08e285be8f (patch) | |
tree | 21a1275121c4b48c2330a91d1ba2b7d3aec97273 /indra/viewer_components | |
parent | 6f7183cd4422a008554afd854dc631fe575ad8dc (diff) |
Fixed build error due to unreferenced local variable.
Diffstat (limited to 'indra/viewer_components')
-rw-r--r-- | indra/viewer_components/updater/llupdatedownloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/viewer_components/updater/llupdatedownloader.cpp b/indra/viewer_components/updater/llupdatedownloader.cpp index 75f896cc76..efb55ab83a 100644 --- a/indra/viewer_components/updater/llupdatedownloader.cpp +++ b/indra/viewer_components/updater/llupdatedownloader.cpp @@ -158,7 +158,7 @@ LLUpdateDownloader::Implementation::Implementation(LLUpdateDownloader::Client & mDownloadRecordPath(LLUpdateDownloader::downloadMarkerPath()) { CURLcode code = curl_global_init(CURL_GLOBAL_ALL); // Just in case. - llassert(code = CURLE_OK); // TODO: real error handling here. + llverify(code == CURLE_OK); // TODO: real error handling here. } |