Rename C++ keyword in order to bring the codebase closer to being able to be compiled with a C++ compiler. Signed-off-by: Brandon Williams <bmwill@xxxxxxxxxx> --- builtin/replace.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/builtin/replace.c b/builtin/replace.c index 42cf4f62a..e48835b54 100644 --- a/builtin/replace.c +++ b/builtin/replace.c @@ -284,7 +284,7 @@ static int edit_and_replace(const char *object_ref, int force, int raw) { char *tmpfile = git_pathdup("REPLACE_EDITOBJ"); enum object_type type; - struct object_id old, new, prev; + struct object_id old, new_oid, prev; struct strbuf ref = STRBUF_INIT; if (get_oid(object_ref, &old) < 0) @@ -300,14 +300,14 @@ static int edit_and_replace(const char *object_ref, int force, int raw) export_object(&old, type, raw, tmpfile); if (launch_editor(tmpfile, NULL, NULL) < 0) die("editing object file failed"); - import_object(&new, type, raw, tmpfile); + import_object(&new_oid, type, raw, tmpfile); free(tmpfile); - if (!oidcmp(&old, &new)) + if (!oidcmp(&old, &new_oid)) return error("new object is the same as the old one: '%s'", oid_to_hex(&old)); - return replace_object_oid(object_ref, &old, "replacement", &new, force); + return replace_object_oid(object_ref, &old, "replacement", &new_oid, force); } static void replace_parents(struct strbuf *buf, int argc, const char **argv) @@ -386,7 +386,7 @@ static void check_mergetags(struct commit *commit, int argc, const char **argv) static int create_graft(int argc, const char **argv, int force) { - struct object_id old, new; + struct object_id old, new_oid; const char *old_ref = argv[0]; struct commit *commit; struct strbuf buf = STRBUF_INIT; @@ -410,15 +410,15 @@ static int create_graft(int argc, const char **argv, int force) check_mergetags(commit, argc, argv); - if (write_sha1_file(buf.buf, buf.len, commit_type, new.hash)) + if (write_sha1_file(buf.buf, buf.len, commit_type, new_oid.hash)) die(_("could not write replacement commit for: '%s'"), old_ref); strbuf_release(&buf); - if (!oidcmp(&old, &new)) + if (!oidcmp(&old, &new_oid)) return error("new commit is the same as the old one: '%s'", oid_to_hex(&old)); - return replace_object_oid(old_ref, &old, "replacement", &new, force); + return replace_object_oid(old_ref, &old, "replacement", &new_oid, force); } int cmd_replace(int argc, const char **argv, const char *prefix) -- 2.16.0.rc1.238.g530d649a79-goog