[PD-cvs] pd/src s_inter.c,1.5.4.10.2.20,1.5.4.10.2.21

Mathieu Bouchard matju at users.sourceforge.net
Sun Nov 19 09:02:57 CET 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22723

Modified Files:
      Tag: devel_0_39
	s_inter.c 
Log Message:
fix for warnings (ansi c)


Index: s_inter.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/s_inter.c,v
retrieving revision 1.5.4.10.2.20
retrieving revision 1.5.4.10.2.21
diff -C2 -d -r1.5.4.10.2.20 -r1.5.4.10.2.21
*** s_inter.c	11 Aug 2006 10:16:11 -0000	1.5.4.10.2.20
--- s_inter.c	19 Nov 2006 08:02:55 -0000	1.5.4.10.2.21
***************
*** 887,891 ****
          24, 15, 28};
  
! static int sys_start_watchdog_thread();
  
  static t_int fake_initfromgui(t_int* dummy)
--- 887,891 ----
          24, 15, 28};
  
! static int sys_start_watchdog_thread(void);
  
  static t_int fake_initfromgui(t_int* dummy)
***************
*** 1397,1401 ****
  
  /* start a high priority watchdog thread */
! static int sys_start_watchdog_thread()
  {
  	pthread_attr_t w_attr;
--- 1397,1401 ----
  
  /* start a high priority watchdog thread */
! static int sys_start_watchdog_thread(void)
  {
  	pthread_attr_t w_attr;
***************
*** 1472,1475 ****
--- 1472,1476 ----
  		sys_microsleep(1.5e7); /* and sleep for another 15 seconds */
  	}
+ 	return 0; /* avoid warning */
  }
  





More information about the Pd-cvs mailing list