Skip to content

Commit

Permalink
add uv_run_mode to uv_run
Browse files Browse the repository at this point in the history
  • Loading branch information
masterkain authored and nikhilm committed Apr 13, 2013
1 parent fcffc21 commit 3bab9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taglib.cc
Expand Up @@ -350,7 +350,7 @@ TagLib::File *CallbackResolver::createFile(TagLib::FileName fileName, bool readA


uv_async_init(uv_default_loop(), &baton.request, invokeResolverCb); uv_async_init(uv_default_loop(), &baton.request, invokeResolverCb);
uv_async_send(&baton.request); uv_async_send(&baton.request);
uv_run(wait_loop); uv_run(wait_loop, UV_RUN_DEFAULT);
uv_loop_delete(wait_loop); uv_loop_delete(wait_loop);
} }
else { else {
Expand Down

0 comments on commit 3bab9c9

Please sign in to comment.