Re: [GSoC][PATCH 2/3] credential-cache.c: Make git use XDG_CACHE_HOME for credentials
From: Junio C Hamano <hidden> Date: 2017-03-13 18:11:17
Devin Lehmacher [off-list ref] writes:
+static char* get_socket_path(void) {
By the way, in our codebase (which is C not C++), the asterisk does
not stick to the type, i.e. the above should be:
static char *get_socket_path(void)
{