Skip to content

Commit 22ab0ab

Browse files
committed
Fix formatting.
1 parent 7b4383a commit 22ab0ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/bsp2mtx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ int main(int argc, char** argv) {
2121
printf(" === Reading file... ===\n");
2222
bsp_matrix_t matrix = bsp_read_matrix(input_fname, NULL);
2323
printf(" === Done writing. ===\n");
24-
if (matrix.format != BSP_COO){
24+
if (matrix.format != BSP_COO) {
2525
matrix = bsp_convert_matrix(matrix, BSP_COO);
2626
}
27-
27+
2828
printf(" === Writing to %s... ===\n", output_fname);
2929
bsp_mmwrite(output_fname, matrix);
3030
printf(" === Done writing. ===\n");

0 commit comments

Comments
 (0)