From: Junio C Hamano Date: Tue, 17 Jun 2025 17:44:40 +0000 (-0700) Subject: Merge branch 'ly/do-not-localize-bug-messages' X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f622bb0abf08c31a94858955a1350a65bd410de;p=thirdparty%2Fgit.git Merge branch 'ly/do-not-localize-bug-messages' Code clean-up. * ly/do-not-localize-bug-messages: BUG(): remove leading underscore of the format string --- 1f622bb0abf08c31a94858955a1350a65bd410de diff --cc pack-bitmap-write.c index 7f400ee012,23ec32a992..56960e6ad7 --- a/pack-bitmap-write.c +++ b/pack-bitmap-write.c @@@ -1087,8 -1054,8 +1087,8 @@@ void bitmap_writer_finish(struct bitmap oid_access); if (commit_pos < 0) - BUG(_("trying to write commit not in index")); + BUG("trying to write commit not in index"); - stored->commit_pos = commit_pos; + stored->commit_pos = commit_pos + base_objects; } write_selected_commits_v1(writer, f, offsets);