Fix: the string literal is implicitly casted to the bool type.

This commit is contained in:
bank 2014-05-01 12:37:57 +04:00
parent e7eab10ad5
commit e6673eaf30
2 changed files with 3 additions and 3 deletions

View file

@ -303,7 +303,7 @@ extern "C" {
Namespace::Entry* entry = GetEntry(nameSpace, name);
if (!entry)
return "";
return false;
return entry->cb.mBoolCallbackFunc(NULL, argc, argv);
}