diff options
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -457,7 +457,7 @@ static char *guess_defbranch(void) | |||
457 | const char *ref; | 457 | const char *ref; |
458 | unsigned char sha1[20]; | 458 | unsigned char sha1[20]; |
459 | 459 | ||
460 | ref = resolve_ref_unsafe("HEAD", sha1, 0, NULL); | 460 | ref = resolve_ref_unsafe("HEAD", 0, sha1, NULL); |
461 | if (!ref || !starts_with(ref, "refs/heads/")) | 461 | if (!ref || !starts_with(ref, "refs/heads/")) |
462 | return "master"; | 462 | return "master"; |
463 | return xstrdup(ref + 11); | 463 | return xstrdup(ref + 11); |