Skip to content

Commit 54a3d8d

Browse files
committed
Fixed function call
1 parent 1525afc commit 54a3d8d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/expr/Resolver.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ namespace lsp
8686
if (func != NULL)
8787
return func(value, num_args, args);
8888

89-
set_value_undef(value);
90-
return STATUS_OK;
89+
return STATUS_NOT_FOUND;
9190
}
9291

9392
status_t Resolver::call(value_t *value, const LSPString *name, size_t num_args, const value_t *args)

0 commit comments

Comments
 (0)