[Python-checkins] python/dist/src/Modules signalmodule.c,2.60.10.1,2.60.10.2

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 13 Jun 2002 14:39:49 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv10541/Modules

Modified Files:
      Tag: release22-maint
	signalmodule.c 
Log Message:
SF # 533070 Silence AIX C Compiler Warnings

Warning caused by using &func.  & is not necessary.


Index: signalmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v
retrieving revision 2.60.10.1
retrieving revision 2.60.10.2
diff -C2 -d -r2.60.10.1 -r2.60.10.2
*** signalmodule.c	12 Jan 2002 11:13:23 -0000	2.60.10.1
--- signalmodule.c	13 Jun 2002 21:39:47 -0000	2.60.10.2
***************
*** 367,371 ****
  		Py_DECREF(Handlers[SIGINT].func);
  		Handlers[SIGINT].func = IntHandler;
! 		old_siginthandler = PyOS_setsig(SIGINT, &signal_handler);
  	}
  
--- 367,371 ----
  		Py_DECREF(Handlers[SIGINT].func);
  		Handlers[SIGINT].func = IntHandler;
! 		old_siginthandler = PyOS_setsig(SIGINT, signal_handler);
  	}