Commit b467b047 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Merge pull request #28 from ExaTad/tad/osx-build-bugfix

fix Apple OSX build issue
parents c377c65c ee3be3c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -165,7 +165,7 @@ void KineticSocket_BeginPacket(int fd)
    int on = 1;
    setsockopt(fd, IPPROTO_TCP, TCP_CORK, &on, sizeof(on));
#else
    (void)socket;
    (void)fd;
#endif
}

@@ -175,6 +175,6 @@ void KineticSocket_FinishPacket(int fd)
    int off = 0;
    setsockopt(fd, IPPROTO_TCP, TCP_CORK, &off, sizeof(off));
#else
    (void)socket;
    (void)fd;
#endif
}