diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2009-04-19 10:01:20 -0300 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2009-04-19 10:01:20 -0300 |
commit | ab149c6b07e5e183a0ad4dec6c886f06df6d2efc (patch) | |
tree | ab903683a7f83193de945cff42d9a9a1f00df07c /hardinfo2/shell.c | |
parent | b8ec48cc434da4c35e574cdd8d9c7465f101799c (diff) |
Clean up CPU description on benchmark display
Diffstat (limited to 'hardinfo2/shell.c')
-rw-r--r-- | hardinfo2/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c index 2fb36010..c33be0ef 100644 --- a/hardinfo2/shell.c +++ b/hardinfo2/shell.c @@ -1074,7 +1074,7 @@ static void update_progress() tmp = g_strdup_printf("%.2f", floatval); } - tmp = strreplace(tmp, ",", '.'); + tmp = strreplacechr(tmp, ",", '.'); gtk_tree_store_set(store, &iter, INFO_TREE_COL_PROGRESS, cur, INFO_TREE_COL_VALUE, tmp, -1); g_free(tmp); |