fix uninitialized value

This commit is contained in:
Marko Oldenburg 2017-01-05 21:50:16 +01:00
parent fe3e5fe24a
commit 3dffec0b40

View File

@ -246,6 +246,7 @@ sub NUKIBridge_Get($@) {
my ($hash, $name, $cmd, @args) = @_; my ($hash, $name, $cmd, @args) = @_;
my ($arg, @params) = @args; my ($arg, @params) = @args;
my $list;
if($cmd eq 'logFile') { if($cmd eq 'logFile') {
return "usage: logFile" if( @args != 0 ); return "usage: logFile" if( @args != 0 );
@ -258,7 +259,7 @@ sub NUKIBridge_Get($@) {
NUKIBridge_getCallbackList($hash) if( !IsDisabled($name) ); NUKIBridge_getCallbackList($hash) if( !IsDisabled($name) );
} else { } else {
my $list = "logFile:noArg callbackList:noArg" if( ReadingsVal($name,'bridgeType','Software') eq 'Hardware' ); $list = "logFile:noArg callbackList:noArg" if( ReadingsVal($name,'bridgeType','Software') eq 'Hardware' );
return "Unknown argument $cmd, choose one of $list"; return "Unknown argument $cmd, choose one of $list";
} }