From b63974c2cb39705eacc4733ca7a376fde7d0921d Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Wed, 18 Jun 2014 18:40:23 +0200 Subject: plugins/runcmd.c: Remove superfluous newline The puts(3) function already appends a newline character to the string. diff --git a/plugins/runcmd.c b/plugins/runcmd.c index 4352e60..1a7c904 100644 --- a/plugins/runcmd.c +++ b/plugins/runcmd.c @@ -261,7 +261,7 @@ runcmd_timeout_alarm_handler (int signo) size_t i; if (signo == SIGALRM) - puts(_("CRITICAL - Plugin timed out while executing system call\n")); + puts(_("CRITICAL - Plugin timed out while executing system call")); if(np_pids) for(i = 0; i < maxfd; i++) { if(np_pids[i] != 0) kill(np_pids[i], SIGKILL); -- cgit v0.10-9-g596f