Skip to content

Commit

Permalink
+ spaces->tabs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
djdron committed Dec 6, 2017
1 parent bef026a commit eb531d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build/ios/UnrealSpeccyPortable-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
<key>vtrd.in</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
<key>vtrd.in</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
<key>rzxarchive.co.uk</key>
<dict>
<key>NSIncludesSubdomains</key>
Expand Down
2 changes: 1 addition & 1 deletion platform/web/curl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ std::string GetURL(const char* path)
curl_easy_setopt(curl, CURLOPT_URL, path);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
std::string file_data;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &file_data);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, _write_callback);
Expand Down

0 comments on commit eb531d4

Please sign in to comment.