TAL Reference Summary
Error Messages
TAL Reference Summary
096256 Tandem Computers Incorporated 99
115 Missing FOR part
The FOR count clause is missing from a move statement. Include the FOR count clause
in the move statement.
116 Illegal use of period prefix
An incorrect use of the period (.) prefix occurs. Use this prefix only as follows:
As an indirection symbol in declarations
As a separator in qualified identifiers of structure items, as in
MYSTRUCT.SUBSTRUCT.ITEMX
As a dereferencing symbol with INT and STRING identifiers to add a level of
indirection
117 Bounds are illegal on struct pointers
A structure pointer declaration includes bounds. Remove the bounds from the
declaration.
118 Width of UNSIGNED array elements must be 1, 2, 4, or 8 bits
An incorrect width value appears in an UNSIGNED array declaration. For the width of
UNSIGNED array elements, specify 1, 2, 4, or 8 only.
119 Illegal use of @ prefix together with index expression
In an assignment statement, an indexed pointer identifier appears. If the pointer is
declared within a structure or substructure, append the index to the structure or
substructure identifier, not to the pointer identifier. Otherwise, remove the index from
the assignment statement.
120 Only type INT and INT(32) index expressions are allowed
An index expression of the wrong data type appears. Specify an INT or INT(32) index
expression.