Commit 0d9a39eaf5e7f85d1e11445cd4f9cea2291cb187

Edward Thomson 2016-02-12T10:02:18

win32: drop incorrect `const`ness

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/win32/longpath.c b/tests/win32/longpath.c
index 07eecd3..5a36875 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);