From 23b40da59885f657dc499b0c120581286d5b43a9 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 11 Jan 2017 14:25:12 -0500 Subject: [PATCH] fix whitespacing causing a warning when compiling. In this case braces are not neccessary. --- src/zm_rtsp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_rtsp.cpp b/src/zm_rtsp.cpp index d08ba166d..f84b2aa53 100644 --- a/src/zm_rtsp.cpp +++ b/src/zm_rtsp.cpp @@ -739,8 +739,8 @@ Debug(5, "sendkeepalive %d, timeout %d, now: %d last: %d since: %d", sendKeepali { if ( buffer[0] == '$' ) { - if ( buffer.size() < 4 ) - break; + if ( buffer.size() < 4 ) + break; unsigned char channel = buffer[1]; unsigned short len = ntohs( *((unsigned short *)(buffer+2)) );