From 1f8a6d806cc25ece4d092fb3d49af9ccc1443102 Mon Sep 17 00:00:00 2001
From: Matt Stancliff <matt@genges.com>
Date: Wed, 13 Aug 2014 10:58:54 -0400
Subject: [PATCH] Fix redis-benchmark abort output

---
 src/redis-benchmark.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/redis-benchmark.c b/src/redis-benchmark.c
index 2e0aa8a60..2e67f1021 100644
--- a/src/redis-benchmark.c
+++ b/src/redis-benchmark.c
@@ -597,7 +597,7 @@ int showThroughput(struct aeEventLoop *eventLoop, long long id, void *clientData
     REDIS_NOTUSED(clientData);
 
     if (config.liveclients == 0) {
-        fprintf(stderr,"All clients disconnected... aborting.");
+        fprintf(stderr,"All clients disconnected... aborting.\n");
         exit(1);
     }