From 814208a7a697274994ee3eeb0da225c0fda6d1c7 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Mon, 30 Apr 2012 16:29:26 +0200
Subject: tests: Mark some file-internal symbols as static.

---
 tests/rotozoom.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'tests/rotozoom.c')

diff --git a/tests/rotozoom.c b/tests/rotozoom.c
index 9ce45cd9f4..9bba6e3489 100644
--- a/tests/rotozoom.c
+++ b/tests/rotozoom.c
@@ -160,8 +160,8 @@ static void pgmyuv_save(const char *filename, int w, int h,
     free(cr_tab);
 }
 
-unsigned char *rgb_tab;
-int width, height, wrap;
+static unsigned char *rgb_tab;
+static int width, height, wrap;
 
 static void put_pixel(int x, int y, int r, int g, int b)
 {
@@ -177,12 +177,12 @@ static void put_pixel(int x, int y, int r, int g, int b)
     p[2] = b;
 }
 
-unsigned char tab_r[256 * 256];
-unsigned char tab_g[256 * 256];
-unsigned char tab_b[256 * 256];
+static unsigned char tab_r[256 * 256];
+static unsigned char tab_g[256 * 256];
+static unsigned char tab_b[256 * 256];
 
-int h_cos[360];
-int h_sin[360];
+static int h_cos[360];
+static int h_sin[360];
 
 static int ipol(uint8_t *src, int x, int y)
 {
-- 
cgit v1.2.3