]> arthur.barton.de Git - netdata.git/commitdiff
minor fix for debug statements in apps.plugin
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Wed, 1 Feb 2017 21:17:48 +0000 (23:17 +0200)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Wed, 1 Feb 2017 21:17:48 +0000 (23:17 +0200)
src/apps_plugin.c

index 738bd85a6cf23b31ccd606c367b662f4647c7e24..128b198561d551622f97ead759d6a3b8459e4ea2 100644 (file)
@@ -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);