From 7883ce67cdf84c267f2cb51e5536ef45dc51549b Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 22 Jan 2015 16:55:27 -0500 Subject: [PATCH] Add missing newline in debug print --- limelight-common/VideoDepacketizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limelight-common/VideoDepacketizer.c b/limelight-common/VideoDepacketizer.c index c4b6ea6..3a8604b 100644 --- a/limelight-common/VideoDepacketizer.c +++ b/limelight-common/VideoDepacketizer.c @@ -64,7 +64,7 @@ static void dropAvcFrameState(void) { // If we reach our limit, immediately request an IDR frame and reset if (consecutiveFrameDrops == CONSECUTIVE_DROP_LIMIT) { - Limelog("Reached consecutive drop limit"); + Limelog("Reached consecutive drop limit\n"); // Restart the count consecutiveFrameDrops = 0;