Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2014-02-22 21:25:41 +0400
committerBen Straub <bs@github.com>2014-02-24 17:32:05 +0400
commit0d8265c8af1b8ba11ed0818e81276239c47e11db (patch)
tree12bfdfa8f51992f40b070a2cc433bdc75c0c8180 /tests/blame
parentf3e44dd64ca7b7e4640d816e389faa583c7b4fec (diff)
Staticize file-local variables
Diffstat (limited to 'tests/blame')
-rw-r--r--tests/blame/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/blame/buffer.c b/tests/blame/buffer.c
index 912ee9846..340b1dced 100644
--- a/tests/blame/buffer.c
+++ b/tests/blame/buffer.c
@@ -1,7 +1,7 @@
#include "blame_helpers.h"
-git_repository *g_repo;
-git_blame *g_fileblame, *g_bufferblame;
+static git_repository *g_repo;
+static git_blame *g_fileblame, *g_bufferblame;
void test_blame_buffer__initialize(void)
{