0058: Invalid parameter
A command has been given an invalid parameter. For example, it may happen if a number is used in SQR
, while the compiler expects a variable.
Possible solutions: check the command and use valid syntax:
sqr(10) // error, variable expected
sqr($var) // OK
Last updated