Skip to content

Commit 37871ac

Browse files
committed
Fix silly mistake
1 parent a51853f commit 37871ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/engine_bibtex/bibtex/bibtex.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4734,7 +4734,7 @@ static void bst_read_command(Bibtex* ctx)
47344734
ctx->num_preamble_strings = preamble_ptr();
47354735
{
47364736
CiteNumber cites = num_cites();
4737-
if cites > 0 {
4737+
if (cites > 0) {
47384738
cites -= 1;
47394739
}
47404740
if (cites * num_fields() + crossref_num() >= max_fields()) {
@@ -4772,7 +4772,7 @@ static void bst_read_command(Bibtex* ctx)
47724772
}
47734773
{
47744774
CiteNumber cites = num_cites();
4775-
if cites > 0 {
4775+
if (cites > 0) {
47764776
cites -= 1;
47774777
}
47784778
if (cites * num_fields() + crossref_num() >= max_fields()) {

0 commit comments

Comments
 (0)