From eaf27a942efc8df31a25b5858c9df48cf8f6db44 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 11 Mar 2013 17:18:49 -0700 Subject: [PATCH] add trailing new line to mixer output --- mixer/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixer/src/main.cpp b/mixer/src/main.cpp index 3196cded08..155f63f9e0 100644 --- a/mixer/src/main.cpp +++ b/mixer/src/main.cpp @@ -66,7 +66,7 @@ void *sendBuffer(void *args) while (true) { sentBytes = 0; - printf("Last send was %f us ago", usecTimestampNow() - usecTimestamp(&lastSend)); + printf("Last send was %f ms ago\n", (usecTimestampNow() - usecTimestamp(&lastSend)) / 1000); gettimeofday(&lastSend, NULL); for (int i = 0; i < agentList.getAgents().size(); i++) {