diff options
Diffstat (limited to '')
-rw-r--r-- | test/example.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/example.c b/test/example.c index e05bc2e..104b2b7 100644 --- a/test/example.c +++ b/test/example.c | |||
@@ -26,13 +26,13 @@ | |||
26 | } \ | 26 | } \ |
27 | } | 27 | } |
28 | 28 | ||
29 | z_const char hello[] = "hello, hello!"; | 29 | static z_const char hello[] = "hello, hello!"; |
30 | /* "hello world" would be more standard, but the repeated "hello" | 30 | /* "hello world" would be more standard, but the repeated "hello" |
31 | * stresses the compression code better, sorry... | 31 | * stresses the compression code better, sorry... |
32 | */ | 32 | */ |
33 | 33 | ||
34 | const char dictionary[] = "hello"; | 34 | static const char dictionary[] = "hello"; |
35 | uLong dictId; /* Adler32 value of the dictionary */ | 35 | static uLong dictId; /* Adler32 value of the dictionary */ |
36 | 36 | ||
37 | void test_deflate OF((Byte *compr, uLong comprLen)); | 37 | void test_deflate OF((Byte *compr, uLong comprLen)); |
38 | void test_inflate OF((Byte *compr, uLong comprLen, | 38 | void test_inflate OF((Byte *compr, uLong comprLen, |