[cmucl-cvs] [git] CMU Common Lisp branch master updated. snapshot-2012-01-36-g07cd38a

Raymond Toy rtoy at common-lisp.net
Sat Feb 4 16:34:40 UTC 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".

The branch, master has been updated
       via  07cd38a5a4b6d2e3897af2ef483b839f212e1f01 (commit)
      from  a993b16048c21136a274c7b7d09a5b3969bf444a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 07cd38a5a4b6d2e3897af2ef483b839f212e1f01
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sat Feb 4 08:34:35 2012 -0800

    Fix compiler warning by defining server_shutdown correctly.

diff --git a/src/motif/server/main.c b/src/motif/server/main.c
index e380c79..c5e42ba 100644
--- a/src/motif/server/main.c
+++ b/src/motif/server/main.c
@@ -88,9 +88,9 @@ void close_sockets()
   unlink(socket_path);
 }
 
-void server_shutdown()
+void server_shutdown(int signal)
 {
-  fprintf(stderr,"Caught signal.\n");
+  fprintf(stderr,"Caught signal %d.\n", signal);
   close_sockets();
   exit(0);
 }

-----------------------------------------------------------------------

Summary of changes:
 src/motif/server/main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMU Common Lisp




More information about the cmucl-cvs mailing list