Initial value for a STATIC pointer should be a STATIC or global variable address.
10
Cause . . . . . : The parameter for the INZ keyword for a STATIC pointer in a procedure should not be the address of a non-static variable in the procedure, since the initialization is only done on the first call, and the initial value may not be valid on subsequent calls to the procedure
Recovery . . . : Change the initial value to an address of a STATIC or global variable, or remove the parameter from the INZ keyword. Compile again.