Commit a68cf94b by Carlos Martín Nieto

Fix const char ** warning

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent e69ac243
......@@ -377,8 +377,7 @@ static int config_get(git_config *cfg, const char *name, const char **out)
int git_config_get_long(git_config *cfg, const char *name, long int *out)
{
const char *value;
char *num_end;
const char *value, *num_end;
int ret;
long int num;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment