[PD-cvs] pd/src x_time.c,1.2.8.1,1.2.8.2

Mathieu Bouchard matju at users.sourceforge.net
Mon Nov 28 00:16:21 CET 2005


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

Modified Files:
      Tag: devel_0_39
	x_time.c 
Log Message:
fixed warnings


Index: x_time.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/x_time.c,v
retrieving revision 1.2.8.1
retrieving revision 1.2.8.2
diff -C2 -d -r1.2.8.1 -r1.2.8.2
*** x_time.c	6 Aug 2005 20:56:11 -0000	1.2.8.1
--- x_time.c	27 Nov 2005 23:16:19 -0000	1.2.8.2
***************
*** 428,432 ****
      union word *w;
      if (x->x_hang == h) x->x_hang = h->h_next;
!     else for (h2 = x->x_hang; h3 = h2->h_next; h2 = h3)
      {
          if (h3 == h)
--- 428,432 ----
      union word *w;
      if (x->x_hang == h) x->x_hang = h->h_next;
!     else for (h2 = x->x_hang; (h3 = h2->h_next); h2 = h3)
      {
          if (h3 == h)
***************
*** 448,451 ****
--- 448,452 ----
              else post("pipe: stale pointer");
              break;
+ 	default: error("hang_tick: huh?");
          }
      }
***************
*** 481,484 ****
--- 482,486 ----
              }
              gp++;
+ 	default: error("pipe_list: huh?");
          }
      }
***************
*** 509,513 ****
  {
      t_hang *hang;
!     while (hang = x->x_hang)
      {
          x->x_hang = hang->h_next;
--- 511,515 ----
  {
      t_hang *hang;
!     while ((hang = x->x_hang))
      {
          x->x_hang = hang->h_next;





More information about the Pd-cvs mailing list