From 0478b7f4725405bf43dee341d235ef5b5fc44046 Mon Sep 17 00:00:00 2001 From: Jacques Germishuys Date: Thu, 25 Sep 2014 15:35:00 +0200 Subject: [PATCH] Silence unused return value warning --- tests/pack/packbuilder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pack/packbuilder.c b/tests/pack/packbuilder.c index 12273ec85..29f3e2d64 100644 --- a/tests/pack/packbuilder.c +++ b/tests/pack/packbuilder.c @@ -47,7 +47,7 @@ void test_pack_packbuilder__cleanup(void) git_indexer_free(_indexer); _indexer = NULL; - p_chdir(".."); + cl_git_pass(p_chdir("..")); cl_git_sandbox_cleanup(); _repo = NULL; }