summaryrefslogtreecommitdiff
path: root/modules/benchmark.c
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2018-03-02 14:42:21 -0600
committerLeandro A. F. Pereira <leandro@hardinfo.org>2018-03-12 09:18:23 -0700
commit624b2d19b7c73aa3a73c2c4157a851cf3d7aba52 (patch)
tree96bdab9d8f84e5e92f9c78cc41fa23dfcfc02043 /modules/benchmark.c
parentc9f34d357168e3c9bd6c5dc7ad97e2c05edb39df (diff)
benchmark.c: remove debug printf()
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/benchmark.c')
-rw-r--r--modules/benchmark.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/benchmark.c b/modules/benchmark.c
index 26de9557..362755e8 100644
--- a/modules/benchmark.c
+++ b/modules/benchmark.c
@@ -336,7 +336,7 @@ static gchar *__benchmark_include_results(bench_value r,
{
bench_result *b = NULL;
GKeyFile *conf;
- gchar **machines, *temp = NULL;;
+ gchar **machines;
gchar *path, *results = g_strdup(""), *return_value, *processor_frequency, *processor_name;
int i, n_threads;
@@ -345,10 +345,6 @@ static gchar *__benchmark_include_results(bench_value r,
if (r.result > 0.0) {
b = bench_result_this_machine(benchmark, r);
br_mi_add(&results, b, 1);
-
- temp = bench_result_benchmarkconf_line(b);
- printf("[%s]\n%s", benchmark, temp);
- g_free(temp); temp = NULL;
}
conf = g_key_file_new();