Commit b51c1076 authored by Greg Williams's avatar Greg Williams
Browse files

Fixed syntax error that was NOT caught on OSX

parent 216c0642
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -243,8 +243,7 @@ int KineticSocket_Connect(char* host, int port, bool blocking)
    if (ai == NULL)
    {
        // we went through all addresses without finding one we could bind to
        sprintf(message, "Could not connect to %s:%d", host, port);
        LOG(message);
        LOGF("Could not connect to %s:%d", host, port);
        return -1;
    }