diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-07 22:15:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-07 22:15:31 -0700 |
commit | 92a75a391e66cfc278cf59741e484efd80c02176 (patch) | |
tree | 13c842918d9368b93ef197f2bd0b64bac9b87368 /builtin/for-each-ref.c | |
parent | 4a2b34eb0ca6ce740478bc4f57226c30cc0d25a7 (diff) | |
parent | 2543d9b609d158f611e317738644e67cacac6b9a (diff) | |
download | git-92a75a391e66cfc278cf59741e484efd80c02176.tar.gz git-92a75a391e66cfc278cf59741e484efd80c02176.tar.xz |
Merge branch 'maint'
* maint:
Change C99 comments to old-style C comments
Diffstat (limited to 'builtin/for-each-ref.c')
-rw-r--r-- | builtin/for-each-ref.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c index 3a9795317..a2b28c696 100644 --- a/builtin/for-each-ref.c +++ b/builtin/for-each-ref.c @@ -552,10 +552,10 @@ static void grab_values(struct atom_value *val, int deref, struct object *obj, v grab_person("committer", val, deref, obj, buf, sz); break; case OBJ_TREE: - // grab_tree_values(val, deref, obj, buf, sz); + /* grab_tree_values(val, deref, obj, buf, sz); */ break; case OBJ_BLOB: - // grab_blob_values(val, deref, obj, buf, sz); + /* grab_blob_values(val, deref, obj, buf, sz); */ break; default: die("Eh? Object of type %d?", obj->type); |