From a92601f069af9943c6e26bd94d58d5066a012ccf Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 8 Dec 2008 15:05:29 +0100 Subject: [PATCH] fix for renamed DEBUG2 macro (again) --- src/conky.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/conky.c b/src/conky.c index 50b96b22..8ae36d78 100644 --- a/src/conky.c +++ b/src/conky.c @@ -2842,7 +2842,7 @@ static struct text_object *construct_text_object(const char *s, } else { obj->data.cpu_index = 0; } - DEBUG2("Adding info for CPU %d", obj->data.cpu_index); + DBGP2("Adding info for CPU %d", obj->data.cpu_index); } else { obj->data.cpu_index = 0; } @@ -2859,7 +2859,7 @@ static struct text_object *construct_text_object(const char *s, scan_bar(arg, &obj->a, &obj->b); obj->data.cpu_index = 0; } - DEBUG2("Adding info for CPU %d", obj->data.cpu_index); + DBGP2("Adding info for CPU %d", obj->data.cpu_index); END OBJ(cpugraph, INFO_CPU) char *buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d, &obj->e, &obj->showaslog); @@ -2872,7 +2872,7 @@ static struct text_object *construct_text_object(const char *s, } free(buf); } - DEBUG2("Adding info for CPU %d", obj->data.cpu_index); + DBGP2("Adding info for CPU %d", obj->data.cpu_index); END OBJ(loadgraph, INFO_LOADAVG) char *buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d, &obj->e, &obj->showaslog);