Skip to content
Snippets Groups Projects
Commit a13acfc9 authored by brad kittenbrink's avatar brad kittenbrink
Browse files

Fixed build error due to unreferenced local variable.

parent 6f7183cd
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ LLUpdateDownloader::Implementation::Implementation(LLUpdateDownloader::Client & ...@@ -158,7 +158,7 @@ LLUpdateDownloader::Implementation::Implementation(LLUpdateDownloader::Client &
mDownloadRecordPath(LLUpdateDownloader::downloadMarkerPath()) mDownloadRecordPath(LLUpdateDownloader::downloadMarkerPath())
{ {
CURLcode code = curl_global_init(CURL_GLOBAL_ALL); // Just in case. 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.
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment