From 60de513311fdc78a2d9d43f7444e790aeac0f080 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 7 Jun 2007 05:47:39 +0000 Subject: [PATCH] Make aux_data file scope variable static. --- tests/libpspp/heap-test.c | 2 +- tests/libpspp/ll-test.c | 2 +- tests/libpspp/llx-test.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/libpspp/heap-test.c b/tests/libpspp/heap-test.c index 642ce7e05a..adbd61dee4 100644 --- a/tests/libpspp/heap-test.c +++ b/tests/libpspp/heap-test.c @@ -79,7 +79,7 @@ struct element int x; /* Primary value. */ }; -int aux_data; +static int aux_data; /* Returns the `struct element' that NODE is embedded within. */ static struct element * diff --git a/tests/libpspp/ll-test.c b/tests/libpspp/ll-test.c index 324b3d1389..353787b7fd 100644 --- a/tests/libpspp/ll-test.c +++ b/tests/libpspp/ll-test.c @@ -118,7 +118,7 @@ struct element int y; /* Secondary value. */ }; -int aux_data; +static int aux_data; /* Returns the `struct element' that LL is embedded within. */ static struct element * diff --git a/tests/libpspp/llx-test.c b/tests/libpspp/llx-test.c index f825a3a420..be31172c84 100644 --- a/tests/libpspp/llx-test.c +++ b/tests/libpspp/llx-test.c @@ -138,7 +138,7 @@ struct element int y; /* Secondary value. */ }; -int aux_data; +static int aux_data; /* Prints the elements in LIST. */ static void UNUSED -- 2.30.2