pspp-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[patch 12/19] make aux_data static in libpspp tests


From: blp
Subject: [patch 12/19] make aux_data static in libpspp tests
Date: Tue, 05 Jun 2007 23:27:39 -0700
User-agent: quilt/0.45-1

The aux_data variable can be static.  Make it so.

Index: merge/tests/libpspp/heap-test.c
===================================================================
--- merge.orig/tests/libpspp/heap-test.c        2007-06-05 09:16:11.000000000 
-0700
+++ merge/tests/libpspp/heap-test.c     2007-06-05 09:18:06.000000000 -0700
@@ -79,7 +79,7 @@
     int x;                      /* Primary value. */
   };
 
-int aux_data;
+static int aux_data;
 
 /* Returns the `struct element' that NODE is embedded within. */
 static struct element *
Index: merge/tests/libpspp/ll-test.c
===================================================================
--- merge.orig/tests/libpspp/ll-test.c  2007-06-05 09:16:11.000000000 -0700
+++ merge/tests/libpspp/ll-test.c       2007-06-05 09:18:06.000000000 -0700
@@ -118,7 +118,7 @@
     int y;                      /* Secondary value. */
   };
 
-int aux_data;
+static int aux_data;
 
 /* Returns the `struct element' that LL is embedded within. */
 static struct element *
Index: merge/tests/libpspp/llx-test.c
===================================================================
--- merge.orig/tests/libpspp/llx-test.c 2007-06-05 09:16:11.000000000 -0700
+++ merge/tests/libpspp/llx-test.c      2007-06-05 09:18:06.000000000 -0700
@@ -138,7 +138,7 @@
     int y;                      /* Secondary value. */
   };
 
-int aux_data;
+static int aux_data;
 
 /* Prints the elements in LIST. */
 static void UNUSED

--





reply via email to

[Prev in Thread] Current Thread [Next in Thread]