From 2ce55aa3c5a8c1da3f0e24b2306a42d24060018d Mon Sep 17 00:00:00 2001 From: betateilchen Date: Mon, 1 Dec 2014 12:48:59 +0000 Subject: [PATCH] configDB.pm: minor bugfix to prevent eclipse warning git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@7110 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/configDB.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/configDB.pm b/fhem/configDB.pm index abf4a54f8..12f729562 100644 --- a/fhem/configDB.pm +++ b/fhem/configDB.pm @@ -311,8 +311,8 @@ sub cfgDB_FileUpdate($) { $fhem_dbh->disconnect(); if($id) { my $filesize = -s $filename; - _cfgDB_binFileimport($filename,$filesize,1) if $id; - Log 5, "file $filename updated in configDB"; + _cfgDB_binFileimport($filename,$filesize,1) if ($id) ; + Log(5, "file $filename updated in configDB"); } return; }