summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJordan Hollinger <jhollinger2@gmail.com>2014-11-17 15:53:14 -0800
committerJordan Hollinger <jhollinger2@gmail.com>2014-11-17 15:53:14 -0800
commit417a156b5781b223f1c8c2129006160738da687f (patch)
treefc3e5c2e49caa1c0dd9f517c0849b1d5e0baaf2b /platform
parent36780a85b8f915b08ee0c7a67cb22d01c0fc71c1 (diff)
downloadqtlocation-mapboxgl-417a156b5781b223f1c8c2129006160738da687f.tar.gz
Fix missing semicolon;
Diffstat (limited to 'platform')
-rw-r--r--platform/default/http_request_baton_curl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/default/http_request_baton_curl.cpp b/platform/default/http_request_baton_curl.cpp
index 23029bc5e6..ffd352cfe3 100644
--- a/platform/default/http_request_baton_curl.cpp
+++ b/platform/default/http_request_baton_curl.cpp
@@ -540,7 +540,7 @@ void start_request(void *const ptr) {
// Carry on the shared pointer in the private information of the CURL handle.
curl_easy_setopt(context->handle, CURLOPT_PRIVATE, context);
#ifndef __ANDROID__
- curl_easy_setopt(context->handle, CURLOPT_CAINFO, "ca-bundle.crt")
+ curl_easy_setopt(context->handle, CURLOPT_CAINFO, "ca-bundle.crt");
#else
curl_easy_setopt(context->handle, CURLOPT_SSLCERTTYPE, "PEM");
curl_easy_setopt(context->handle, CURLOPT_SSL_CTX_FUNCTION, sslctx_function);