* webserver.c: warning fix
authorNathan Bryant <loanshark@uncensored.citadel.org>
Fri, 4 Dec 1998 04:43:47 +0000 (04:43 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Fri, 4 Dec 1998 04:43:47 +0000 (04:43 +0000)
webcit/ChangeLog [new file with mode: 0644]
webcit/webserver.c

diff --git a/webcit/ChangeLog b/webcit/ChangeLog
new file mode 100644 (file)
index 0000000..81b7c07
--- /dev/null
@@ -0,0 +1,2 @@
+1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
+       * webserver.c: warning fix
index 80bd0c2c584889f0f14133a44f3e342959e2a8ef..feea112ef1274b25ccbdc11525950614e83777fa 100644 (file)
@@ -5,6 +5,7 @@
  * waiting on the specified port for incoming HTTP connections.  When a
  * connection is established, it calls context_loop() from context_loop.c.
  *
+ * $Id$
  */
 
 #include <stdlib.h>
@@ -275,7 +276,7 @@ int main(int argc, char **argv)
                        /* now create the thread */
                        if (pthread_create(&SessThread, &attr,
                                           (void* (*)(void*)) context_loop,
-                                          ssock)
+                                          (void*) ssock)
                            != 0) {
                                printf("webcit: can't create thread: %s\n",
                                        strerror(errno));