aboutsummaryrefslogtreecommitdiff
path: root/modules/benchmark
diff options
context:
space:
mode:
authorLeandro Pereira <leandro@hardinfo.org>2020-05-27 09:11:26 -0700
committerLeandro Pereira <leandro@hardinfo.org>2020-05-27 09:11:26 -0700
commite9e2f0d2e68cb46c7edca569f85949ab34a8633a (patch)
tree3006221e50d0592781c774a934773bcf66cec5fe /modules/benchmark
parentb75e6edad9e541da77798155560aefdfbc5357c7 (diff)
Fix display problems with User Note and Extra Info
Fixes #552.
Diffstat (limited to 'modules/benchmark')
-rw-r--r--modules/benchmark/bench_results.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/benchmark/bench_results.c b/modules/benchmark/bench_results.c
index 84a460c4..3ebd93d3 100644
--- a/modules/benchmark/bench_results.c
+++ b/modules/benchmark/bench_results.c
@@ -285,7 +285,7 @@ static void filter_invalid_chars(gchar *str)
gchar *p;
for (p = str; *p; p++) {
- if (*p = '\n' || *p == ';' || *p == '|')
+ if (*p == '\n' || *p == ';' || *p == '|')
*p = '_';
}
}