Synopsis
A built-in or add-on DLL/EXE function which you called and expected a return from, did not return any data. For example, here we call my_func and expect a return which we assign to my_var:
my_var = my_func()name is that function's name.
Cause
You didn't want to do anything with the return value from a function, but you forget to use the CALL keyword.
Cure
If you wish to "throw away" the data return from a function, use the CALL keyword. Here, we throw away the return of my_func:
CALL my_funcAlternately, you can use the instruction ADDRESS NULL (once, at the start of your script) to automatically toss away any returns that you don't use from functions, without needing to otherwise use CALL. Reginald's Administration Tool also allows setting this for all scripts you run. (But be sure that no scripts you run will assume their commands are automatically directed to the operating system shell, if you utilize the Administration Tool's setting).