From 1d20092cef672781e91078631c7801f3b9a50590 Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Tue, 16 Sep 2014 18:36:49 +0200 Subject: [PATCH] Remove unused buf variable from path/core test. --- tests/path/core.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/path/core.c b/tests/path/core.c index be63e309b..45f54df29 100644 --- a/tests/path/core.c +++ b/tests/path/core.c @@ -16,8 +16,6 @@ static void test_make_relative( void test_path_core__make_relative(void) { - git_buf buf = GIT_BUF_INIT; - test_make_relative("foo.c", "/path/to/foo.c", "/path/to", 0); test_make_relative("bar/foo.c", "/path/to/bar/foo.c", "/path/to", 0); test_make_relative("foo.c", "/path/to/foo.c", "/path/to/", 0);