From: Costa Tsaousis (ktsaou) Date: Wed, 1 Feb 2017 21:17:48 +0000 (+0200) Subject: minor fix for debug statements in apps.plugin X-Git-Tag: ab-debian_0.20170204.01-0ab1~1^2^2~9 X-Git-Url: https://arthur.barton.de/gitweb/?a=commitdiff_plain;h=ba31f684240cd60663c8cad095fab4fede9bd05a;p=netdata.git minor fix for debug statements in apps.plugin --- diff --git a/src/apps_plugin.c b/src/apps_plugin.c index 738bd85a..128b1985 100644 --- a/src/apps_plugin.c +++ b/src/apps_plugin.c @@ -848,7 +848,7 @@ static inline int read_proc_pid_stat(struct pid_stat *p) { if(p->comm[0]) fprintf(stderr, "apps.plugin: \tpid %d (%s) changed name to '%s'\n", p->pid, p->comm, comm); else - fprintf(stderr, "apps.plugin: \tJust added %d (%s)\n", p->pid, p->comm); + fprintf(stderr, "apps.plugin: \tJust added %d (%s)\n", p->pid, comm); } strncpyz(p->comm, comm, MAX_COMPARE_NAME);