aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/unit1304.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-05-24 17:35:08 +0200
committerYang Tse <yangsita@gmail.com>2011-05-24 17:35:08 +0200
commitec33742d1bd22fd964fda9a9947a4ec3c3e3236a (patch)
treee9965390330e30b7d7272a1789db647e160826f1 /tests/unit/unit1304.c
parent2ea31b0e6f7c0709b4767ed1babeff6b92000282 (diff)
compiler warning: fix
Fix compiler warning: external definition with no prior declaration
Diffstat (limited to 'tests/unit/unit1304.c')
-rw-r--r--tests/unit/unit1304.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/unit1304.c b/tests/unit/unit1304.c
index 3efbe0b82..7b2985c58 100644
--- a/tests/unit/unit1304.c
+++ b/tests/unit/unit1304.c
@@ -23,9 +23,9 @@
#include "netrc.h"
-char login[LOGINSIZE];
-char password[PASSWORDSIZE];
-char filename[64];
+static char login[LOGINSIZE];
+static char password[PASSWORDSIZE];
+static char filename[64];
static CURLcode unit_setup(void)
{