* Minor and/or cosmetic changes made during x64 troubleshooting
[citadel.git] / citadel / citadel_ipc.c
index d0d68b6fbd5714ebd297ed64497d1be6f6f01ef2..3dff0505e798a78f9fd80c974864e5d4f1a06ffc 100644 (file)
@@ -2826,7 +2826,7 @@ static void CtdlIPC_getline(CtdlIPC* ipc, char *buf)
 
 void CtdlIPC_chat_recv(CtdlIPC* ipc, char* buf)
 {
-       return CtdlIPC_getline(ipc, buf);
+       CtdlIPC_getline(ipc, buf);
 }
 
 /*
@@ -2856,7 +2856,7 @@ static void CtdlIPC_putline(CtdlIPC *ipc, const char *buf)
 
 void CtdlIPC_chat_send(CtdlIPC* ipc, const char* buf)
 {
-       return CtdlIPC_putline(ipc, buf);
+       CtdlIPC_putline(ipc, buf);
 }