diff options
author | Patrick Steinhardt <ps@pks.im> | 2025-02-07 12:03:32 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-02-07 09:59:22 -0800 |
commit | bba59f58a4eeda6fafaa3d41e14f3d00a179923f (patch) | |
tree | 51f269e242c52072952c7c35b7ddd2e3df912b28 /notes-merge.c | |
parent | 7f17900b5ba2569d9d07352be51ce90a249a0b46 (diff) |
path: drop `git_pathdup()` in favor of `repo_git_path()`
Remove `git_pathdup()` in favor of `repo_git_path()`. The latter does
essentially the same, with the only exception that it does not rely on
`the_repository` but takes the repo as separate parameter.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes-merge.c')
-rw-r--r-- | notes-merge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notes-merge.c b/notes-merge.c index 8d701ed428..c997c0c1e3 100644 --- a/notes-merge.c +++ b/notes-merge.c @@ -309,7 +309,7 @@ static void write_buf_to_worktree(const struct object_id *obj, const char *buf, unsigned long size) { int fd; - char *path = git_pathdup(NOTES_MERGE_WORKTREE "/%s", oid_to_hex(obj)); + char *path = repo_git_path(the_repository, NOTES_MERGE_WORKTREE "/%s", oid_to_hex(obj)); if (safe_create_leading_directories_const(path)) die_errno("unable to create directory for '%s'", path); |