File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -343,14 +343,14 @@ int main() {
343343 time_elapsed = emscripten_get_now ();
344344
345345 http* http1 = new http (" https://github.com" , http::REQUEST_GET, " emscripten_main.zip" );
346- http1->runRequest (" /emscripten-core/emscripten/archive/main.zip" , http::ASSYNC_THREAD );
346+ http1->runRequest (" /emscripten-core/emscripten/archive/main.zip" , http::ASYNC_THREAD );
347347
348348 http* http2 = new http (" https://github.com" ,http::REQUEST_GET, " wolfviking_master.zip" );
349- http2->runRequest (" /wolfviking0/image.js/archive/master.zip" , http::ASSYNC_THREAD );
349+ http2->runRequest (" /wolfviking0/image.js/archive/master.zip" , http::ASYNC_THREAD );
350350 http2->abortRequest ();
351351
352352 http* http3 = new http (" https://raw.github.com" , http::REQUEST_GET);
353- http3->runRequest (" /emscripten-core/emscripten/main/LICENSE" , http::ASSYNC_THREAD );
353+ http3->runRequest (" /emscripten-core/emscripten/main/LICENSE" , http::ASYNC_THREAD );
354354
355355 num_request++;
356356 emscripten_async_call (wait_http, http1, 500 );
You can’t perform that action at this time.
0 commit comments