From 9a50026b19d95b16a2e0c33560180f157ad86dd3 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 12 Nov 2012 15:38:28 -0800 Subject: [PATCH] clar-helpers: Oops, grab pointer --- tests-clar/clar_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests-clar/clar_helpers.c b/tests-clar/clar_helpers.c index 178ae68b1..3d09bd489 100644 --- a/tests-clar/clar_helpers.c +++ b/tests-clar/clar_helpers.c @@ -249,7 +249,7 @@ const char* cl_git_path_url(const char *path) * *nix: file:///usr/home/... * Windows: file:///C:/Users/... */ - cl_git_pass(git_buf_putc(url_buf, '/')); + cl_git_pass(git_buf_putc(&url_buf, '/')); #endif in_buf = git_buf_cstr(&path_buf);