[ORC] Fix missing return value.

This commit is contained in:
Lang Hames 2020-11-14 08:26:06 +11:00
parent 618d555e8d
commit f2980e8849
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ int openListener(std::string Host, int Port) {
#ifndef LLVM_ON_UNIX
// FIXME: Add TCP support for Windows.
printErrorAndExit("listen option not supported");
return 0;
#else
int SockFD = socket(PF_INET, SOCK_STREAM, 0);
struct sockaddr_in ServerAddr, ClientAddr;