Skip to content

Commit

Permalink
Merge pull request #1163 from Unity-Technologies/fix-warning-crash
Browse files Browse the repository at this point in the history
Fix warning crash
  • Loading branch information
joshpeterson committed Mar 11, 2019
2 parents 67c73d2 + 0cfc4bb commit acf432a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mono/metadata/threadpool-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ selector_thread_wakeup_drain_pipes (void)
break;
if (received == SOCKET_ERROR) {
if (WSAGetLastError () != WSAEINTR && WSAGetLastError () != WSAEWOULDBLOCK)
g_warning ("selector_thread_wakeup_drain_pipes: recv () failed, error (%d) %s\n", WSAGetLastError ());
g_warning ("selector_thread_wakeup_drain_pipes: recv () failed, error (%d)\n", WSAGetLastError ());
break;
}
#endif
Expand Down Expand Up @@ -714,4 +714,4 @@ mono_threadpool_io_remove_domain_jobs (MonoDomain *domain)
g_assert_not_reached ();
}

#endif
#endif

0 comments on commit acf432a

Please sign in to comment.