diff options
Diffstat (limited to 'modules/benchmark')
-rw-r--r-- | modules/benchmark/bench_results.c | 2 |
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 = '_'; } } |