summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile13
-rw-r--r--src/ivyloop.c20
2 files changed, 17 insertions, 16 deletions
diff --git a/src/Makefile b/src/Makefile
index 3b49ad7..b10514f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,20 +1,21 @@
#
# Ivy, C interface
#
-# Copyright (C) 1997-1999
-# Centre d'Études de la Navigation Aérienne
+# Copyright (C) 1997-1999
+# Centre d'Études de la Navigation Aérienne
#
# Makefile
#
-# Authors: François-Régis Colin <colin@cenatoulouse.dgac.fr>
-# Stéphane Chatty <chatty@cenatoulouse.dgac.fr>
+# Authors: François-Régis Colin <colin@cenatoulouse.dgac.fr>
+# Stéphane Chatty <chatty@cenatoulouse.dgac.fr>
#
# $Id$
#
-# Please refer to file version.h for the
-# copyright notice regarding this software
+# Please refer to file version.h for the
+# copyright notice regarding this software
#
#
+
XTINC = /usr/X11R6/include
XTLIB = /usr/X11R6/lib
CC=gcc
diff --git a/src/ivyloop.c b/src/ivyloop.c
index df2c093..f743d1d 100644
--- a/src/ivyloop.c
+++ b/src/ivyloop.c
@@ -1,20 +1,20 @@
/*
* Ivy, C interface
*
- * Copyright (C) 1997-1999
- * Centre d'Études de la Navigation Aérienne
+ * Copyright (C) 1997-1999
+ * Centre d'Études de la Navigation Aérienne
*
- * Main loop handling around select
+ * Main loop based on select
*
- * Authors: François-Régis Colin <colin@cenatoulouse.dgac.fr>
+ * Authors: François-Régis Colin <colin@cenatoulouse.dgac.fr>
* Stéphane Chatty <chatty@cenatoulouse.dgac.fr>
*
* $Id$
*
- * Please refer to file version.h for the
- * copyright notice regarding this software
- *
+ * Please refer to file version.h for the
+ * copyright notice regarding this software
*/
+
#ifdef WIN32
#include <windows.h>
#endif
@@ -158,9 +158,9 @@ void IvyChannelInit(void)
#ifdef WIN32
error = WSAStartup( 0x0101, &WsaData );
- if ( error == SOCKET_ERROR ) {
- printf( "WSAStartup failed.\n" );
- }
+ if ( error == SOCKET_ERROR ) {
+ printf( "WSAStartup failed.\n" );
+ }
#endif
channel_initialized = 1;
}