From e9e2f0d2e68cb46c7edca569f85949ab34a8633a Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Wed, 27 May 2020 09:11:26 -0700 Subject: Fix display problems with User Note and Extra Info Fixes #552. --- modules/benchmark/bench_results.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') 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 = '_'; } } -- cgit v1.2.3