sizeof A => sizeof(A)

This commit is contained in:
Jeff Hill
1995-03-06 22:45:29 +00:00
parent cb86cd03a7
commit 9300dded40

View File

@@ -91,7 +91,7 @@ FAST int sock;
IPPROTO_TCP,
TCP_NODELAY,
(char *)&true,
sizeof true);
sizeof(true));
if(status == ERROR){
logMsg("CAS: TCP_NODELAY option set failed\n",
NULL,
@@ -114,7 +114,7 @@ FAST int sock;
SOL_SOCKET,
SO_KEEPALIVE,
(char *)&true,
sizeof true);
sizeof(true));
if(status == ERROR){
logMsg("CAS: SO_KEEPALIVE option set failed\n",
NULL,