diff --git a/exec.c b/exec.c
index 5356b57771682d74a57fe985b1a8ebb8b7b07f81..2e1f0870837470b921801060f56b9466de0a1d66 100644
--- a/exec.c
+++ b/exec.c
@@ -3,7 +3,7 @@
 *
 * $Author: zimoch $
 * $ID$
-* $Date: 2011/11/28 14:18:37 $
+* $Date: 2013/07/03 08:48:35 $
 *
 * DISCLAIMER: Use at your own risc and so on. No warranty, no refund.
 */
@@ -55,9 +55,8 @@ static void execFunc (const iocshArgBuf *args)
         fprintf (stderr, "%s killed by signal %d: %s\n",
             args[0].sval, WTERMSIG(status), strsignal(WTERMSIG(status)));
 #else
-        fprintf (stderr, "%s killed by signal %d: statuscode %d\n",
-            args[0].sval, WTERMSIG(status), WTERMSIG(status));
-
+        fprintf (stderr, "%s killed by signal %d\n",
+            args[0].sval, WTERMSIG(status));
 #endif
     }
     if (WEXITSTATUS(status))