Fix a compile warning.
diff --git a/tests/network/remote/local.c b/tests/network/remote/local.c
index 2ec5780..c713ade 100644
--- a/tests/network/remote/local.c
+++ b/tests/network/remote/local.c
@@ -218,7 +218,7 @@ void test_network_remote_local__push_to_bare_remote_with_file_url(void)
}
/* Create a file URL */
- char *url = cl_git_path_url("./localbare.git");
+ const char *url = cl_git_path_url("./localbare.git");
/* Connect to the bare repo */
cl_git_pass(git_remote_create_inmemory(&localremote, repo, NULL, url));