Skip to content

Commit 9e70f6e

Browse files
tectonic: fix warnings about misleading indentation
-Wmisleading-indentation
1 parent 014a411 commit 9e70f6e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tectonic/bibtex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6517,7 +6517,7 @@ void get_bib_command_or_entry_and_process(void)
65176517
}
65186518
if ((right_outer_delim == 41 /*right_paren */ )) {
65196519
if ((scan1_white(44 /*comma */ ))) ;
6520-
} else if ((scan2_white(44 /*comma */ , 125 /*right_brace */ ))) ;
6520+
} else if ((scan2_white(44 /*comma */ , 125 /*right_brace */ ))) {};
65216521
{
65226522
;
65236523

tectonic/dpx-pdfobj.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1693,8 +1693,9 @@ apply_filter_TIFF2_1_2_4 (unsigned char *raster,
16931693
}
16941694
}
16951695
}
1696-
if (outbits > 0)
1696+
if (outbits > 0) {
16971697
raster[k] = (outbuf << (8 - outbits)); k++;
1698+
}
16981699
}
16991700
free(prev);
17001701
}

0 commit comments

Comments
 (0)