aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc.c')
-rw-r--r--src/ipc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ipc.c b/src/ipc.c
index 4802810..720cadd 100644
--- a/src/ipc.c
+++ b/src/ipc.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.6 2008/02/28 16:57:51 james
+ * *** empty log message ***
+ *
* Revision 1.5 2008/02/28 11:27:48 james
* *** empty log message ***
*
@@ -220,13 +223,13 @@ ipc_msg_send_hangup (Socket * s)
}
int
-ipc_msg_send_setsize (Socket * s,CRT_Pos size)
+ipc_msg_send_setsize (Socket * s, CRT_Pos size)
{
IPC_Msg_setsize m;
m.size = sizeof (m);
m.type = IPC_MSG_TYPE_SETSIZE;
- m.winsize=size;
+ m.winsize = size;
return ipc_msg_send (s, (IPC_Msg *) & m);
}