aboutsummaryrefslogtreecommitdiff
path: root/modules/benchmark/bench_results.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/benchmark/bench_results.c')
-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 = '_';
}
}