TAL Reference Summary

Error Messages
TAL Reference Summary
096256 Tandem Computers Incorporated 103
139 Invalid declaration for length component of string parameter
An incorrect length parameter appears in a parameter pair specification. Declare this
parameter as an INT simple variable that specifies the length of the string parameter in
the parameter pair.
140 Too many parameters
Too many formal parameters appear in a procedure or subprocedure declaration. For
a procedure, include no more than 32 formal parameters. For a subprocedure, include
no more than allowed by the space available in the parameter area.
141 Invalid declaration for string component of string parameter
An incorrect string parameter appears in a parameter pair specification of the form
string:length. Declare the string parameter as a standard indirect or extended indirect
STRING array.
142 String parameter pair expected
A CALL statement passes an actual parameter to a procedure that expects a parameter
pair. In the actual parameter list, replace the incorrect parameter with a parameter
pair in the form: string: length
143 String parameter pair not expected
A CALL statement passes a parameter pair to a procedure that does not expect it. In
the actual parameter list, replace the parameter pair with a single parameter.
144 Colon not allowed in the actual parameter list
A colon appears incorrectly in an actual parameter list. If the colon represents an
omitted actual parameter pair, replace the colon with a comma. Use a colon only
between the string and length parameters of a parameter pair.