packfile.h: drop extern from function declaration
In 336226c259 (packfile.h: drop extern from function declarations, 2019-04-05), `extern` was removed from function declarations because it's redundant. However, in 8434e85d5f (repack: refactor pack deletion for future use, 2019-06-10), an `extern` was mistakenly included. Remove this spurious `extern`. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Denton Liu committed
Aug 19, 2019 at 02:26 UTC
415b770b88128f0025d7d4663fd9582075875a1b
1 file changed
+1
-1
packfile.h
+1
-1
@@ -100,7 +100,7 @@ struct packed_git *add_packed_git(const char *path, size_t path_len, int local);
100
* Does not unlink if 'force_delete' is false and the pack-file is
101
* marked as ".keep".
102
*/
103
-extern void unlink_pack_path(const char *pack_name, int force_delete);
103
+void unlink_pack_path(const char *pack_name, int force_delete);
104
105
/*
106
* Make sure that a pointer access into an mmap'd index file is within bounds,