Skip to content

Commit f1bb7b2

Browse files
fix: incorrect formatting of the output
1 parent 567d1bf commit f1bb7b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -592,11 +592,11 @@ static int read_file_into_buffer(const char *file_name,
592592

593593
void report(struct seq_file *output_file) {
594594
// CSV header
595-
seq_printf(output_file, "CACHE_MAP, pfc1, pfc2, pfc3\n");
595+
seq_printf(output_file, "CACHE_MAP,pfc1,pfc2,pfc3\n");
596596

597597
// measurements
598598
for (int i = 0; i < n_inputs; i++) {
599-
seq_printf(output_file, "%llu, %llu, %llu, %llu\n",
599+
seq_printf(output_file, "%llu,%llu,%llu,%llu\n",
600600
measurement_results[0][i],
601601
measurement_results[1][i],
602602
measurement_results[2][i],

0 commit comments

Comments
 (0)