aboutsummaryrefslogtreecommitdiffstats
path: root/reftable
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-06 14:31:21 -0800
committerJunio C Hamano <gitster@pobox.com>2024-02-06 14:31:21 -0800
commit184c3b4c735f1c1f0f811fddcf3c2676e7ad613f (patch)
treecb31e7c1b5065683639f51189c135a180281562b /reftable
parent92e69dfb66fa5c760e2d1f76c8a21cdb6faacaee (diff)
parentde65079d7b2801316e398b8806a60607ba45c520 (diff)
downloadgit-184c3b4c735f1c1f0f811fddcf3c2676e7ad613f.tar.gz
Merge branch 'jc/comment-style-fixes'
Rewrite //-comments to /* comments */ in files whose comments prevalently use the latter. * jc/comment-style-fixes: reftable/pq_test: comment style fix merge-ort.c: comment style fix builtin/worktree: comment style fixes
Diffstat (limited to 'reftable')
-rw-r--r--reftable/pq_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reftable/pq_test.c b/reftable/pq_test.c
index 011b5c7502..c202eff848 100644
--- a/reftable/pq_test.c
+++ b/reftable/pq_test.c
@@ -60,7 +60,7 @@ static void test_pq(void)
if (last) {
EXPECT(strcmp(last, rec->u.ref.refname) < 0);
}
- // this is names[i], so don't dealloc.
+ /* this is names[i], so don't dealloc. */
last = rec->u.ref.refname;
rec->u.ref.refname = NULL;
reftable_record_release(rec);