2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

configDB.pm: minor bugfix to prevent eclipse warning

git-svn-id: https://svn.fhem.de/fhem/trunk@7110 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2014-12-01 12:48:59 +00:00
parent 0198d12efd
commit 639a5ec38d

View File

@ -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;
}