[email protected] 7 years ago
parent
commit
6168171280
1 changed files with 2 additions and 2 deletions
  1. 2 2
      oxygine/src/oxygine/core/curl/HttpRequestCurlTask.cpp

+ 2 - 2
oxygine/src/oxygine/core/curl/HttpRequestCurlTask.cpp

@@ -113,11 +113,11 @@ namespace oxygine
                         if (msg->msg == CURLMSG_DONE)
                         {
                             //save args
-                            CURL *eh = msg->easy_handle;
+                            CURL* eh = msg->easy_handle;
                             CURLcode code = msg->data.result;
                             //can be removed now
                             curl_multi_remove_handle(multi_handle, msg->easy_handle);
-                            core::getMainThreadDispatcher().postCallback(ID_DONE, eh, (void*)code, mainThreadFunc, 0);                            
+                            core::getMainThreadDispatcher().postCallback(ID_DONE, eh, (void*)code, mainThreadFunc, 0);
                             break;
                         }
                     }