diff options
author | Brandon Williams <bmwill@google.com> | 2018-02-14 10:59:23 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-14 13:10:05 -0800 |
commit | 6ca32f47145370b6c0d956d1f8568d7e0595f195 (patch) | |
tree | 6da62e2115f422c6df36b599aeb4607adb93616f /builtin/cat-file.c | |
parent | First batch after 2.16 (diff) | |
download | tgif-6ca32f47145370b6c0d956d1f8568d7e0595f195.tar.xz |
object_info: change member name from 'typename' to 'type_name'
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@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/cat-file.c')
-rw-r--r-- | builtin/cat-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index f5fa4fd75a..d06c66c77e 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -76,7 +76,7 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name, buf = NULL; switch (opt) { case 't': - oi.typename = &sb; + oi.type_name = &sb; if (sha1_object_info_extended(oid.hash, &oi, flags) < 0) die("git cat-file: could not get object info"); if (sb.len) { |