From 0d9a39eaf5e7f85d1e11445cd4f9cea2291cb187 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 12 Feb 2016 10:02:18 -0800 Subject: [PATCH] win32: drop incorrect `const`ness --- tests/win32/longpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/win32/longpath.c b/tests/win32/longpath.c index 07eecd394..5a36875ed 100644 --- a/tests/win32/longpath.c +++ b/tests/win32/longpath.c @@ -36,7 +36,7 @@ void assert_name_too_long(void) { const git_error *err; size_t expected_len, actual_len; - const char *expected_msg; + char *expected_msg; err = giterr_last(); actual_len = strlen(err->message);