Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
unix: buildbot debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Aug 30, 2013
1 parent 90874cc commit fdd9791
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uv-common.c
Expand Up @@ -472,7 +472,8 @@ int uv__getaddrinfo_translate_error(int sys_err) {
case EAI_SYSTEM: return UV_EAI_SYSTEM;
#endif
}
assert(!"unknown EAI_* error code");
fprintf(stderr, "Unknown EAI_* error code %d\n", sys_err);
fflush(stderr);
abort();
return 0; /* Pacify compiler. */
}

0 comments on commit fdd9791

Please sign in to comment.