diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2013-11-13 13:08:56 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2013-11-13 13:08:56 +0100 |
| commit | cfd16ca28e593d084350b497b06eac7cb7a6c240 (patch) | |
| tree | 7b58cade5258f2528d71f223a9471e8cbe9ef06b /tests-clar/network/urlparse.c | |
| parent | 6481e06258608f46c2c45e74a8f9cf8c42347004 (diff) | |
| download | libgit2-cfd16ca28e593d084350b497b06eac7cb7a6c240.tar.gz | |
tests: make a few globals statics
ld was warning that the size of path changed, rightly so.
Diffstat (limited to 'tests-clar/network/urlparse.c')
| -rw-r--r-- | tests-clar/network/urlparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/network/urlparse.c b/tests-clar/network/urlparse.c index 31616275a..2a9c2f69f 100644 --- a/tests-clar/network/urlparse.c +++ b/tests-clar/network/urlparse.c @@ -1,8 +1,8 @@ #include "clar_libgit2.h" #include "netops.h" -char *host, *port, *path, *user, *pass; -gitno_connection_data conndata; +static char *host, *port, *path, *user, *pass; +static gitno_connection_data conndata; void test_network_urlparse__initialize(void) { |
