From 1be6c57aee45cee34813f77e9c11084146aea74a Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 8 Nov 2016 13:11:10 -0500 Subject: [PATCH] fix extra semi colon --- scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in b/scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in index a93fcc84d..7e2f03c68 100644 --- a/scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in +++ b/scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in @@ -386,7 +386,7 @@ sub zmMemWrite { while ( my ( $field, $value ) = each( %$field_values ) ) { my ( $section, $element ) = split( /[\/:.]/, $field ); - if ( !$section || !$element ); { + if ( !$section || !$element ) { Fatal( "Invalid shared data selector '$field'" ); }