diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-12-18 14:10:10 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-12-18 14:10:10 -0800 |
| commit | f1c537705b1e87441cd372a8aa63f56948036da0 (patch) | |
| tree | 87d6c68dbc0a3d805c222bc5604f0d8b83861b6e | |
| parent | 1a87c842ece327d03d08096395969aca5e0a6996 (diff) | |
| parent | 50f1abcff6681ae06334b3deef39b20aec261c15 (diff) | |
| download | git-f1c537705b1e87441cd372a8aa63f56948036da0.tar.xz | |
Merge branch 'js/packfile-h-typofix'
Typofix.
* js/packfile-h-typofix:
packfile.c: fix a typo in `each_file_in_pack_dir_fn()`'s declaration
| -rw-r--r-- | packfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packfile.h b/packfile.h index c3692308b8..28c8fd3e39 100644 --- a/packfile.h +++ b/packfile.h @@ -54,7 +54,7 @@ const char *pack_basename(struct packed_git *p); struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path); typedef void each_file_in_pack_dir_fn(const char *full_path, size_t full_path_len, - const char *file_pach, void *data); + const char *file_name, void *data); void for_each_file_in_pack_dir(const char *objdir, each_file_in_pack_dir_fn fn, void *data); |
