From 8ea335d45ef46b3baaede7a9da56583662854685 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 10 Oct 2017 15:08:24 -0400 Subject: [PATCH] whitespace --- src/zm_event.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_event.cpp b/src/zm_event.cpp index 108e33aa5..47ce95ec9 100644 --- a/src/zm_event.cpp +++ b/src/zm_event.cpp @@ -292,7 +292,7 @@ bool Event::WriteFrameVideo( const Image *image, const struct timeval timestamp, } /* If the image does not contain a timestamp, add the timestamp */ - if (!config.timestamp_on_capture) { + if ( !config.timestamp_on_capture ) { ts_image = *image; monitor->TimestampImage( &ts_image, ×tamp ); frameimg = &ts_image; @@ -304,7 +304,7 @@ bool Event::WriteFrameVideo( const Image *image, const struct timeval timestamp, unsigned int timeMS = (delta_time3.sec * delta_time3.prec) + delta_time3.fsec; /* Encode and write the frame */ - if(videowriter->Encode(frameimg, timeMS) != 0) { + if ( videowriter->Encode(frameimg, timeMS) != 0 ) { Error("Failed encoding video frame"); }