diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-15 14:06:00 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-15 22:58:20 -0700 |
commit | 7e0d4ab585bb8bd4dba722c96e811a02b6c2fdda (patch) | |
tree | 5a5b835a743ad8f278198822b6d78148fb6560fb /rerere.c | |
parent | ba35480439d05b8f6cca50527072194fe3278bbb (diff) | |
download | git-7e0d4ab585bb8bd4dba722c96e811a02b6c2fdda.tar.gz git-7e0d4ab585bb8bd4dba722c96e811a02b6c2fdda.tar.xz |
rerere.c: mark private file-scope symbols as static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.c')
-rw-r--r-- | rerere.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ const char *rerere_path(const char *hex, const char *file) return git_path("rr-cache/%s/%s", hex, file); } -int has_rerere_resolution(const char *hex) +static int has_rerere_resolution(const char *hex) { struct stat st; return !stat(rerere_path(hex, "postimage"), &st); |