HP Pascal/iX Reference Manual (31502-90022)

A-: 20
165 MESSAGE DEFAULT FILE INPUT MUST BE IN PROGRAM PARAMETER LIST (165)
CT CAUSE The file variable in a standard procedure or function call was
defaulted to INPUT, but INPUT was not declared in the program
parameter list.
ACTION Either add 'INPUT' to the program heading or remove the
redefinition of 'INPUT', if one was made.
---------------------------------------------------------------------------------------
166 MESSAGE DEFAULT FILE OUTPUT MUST BE IN PROGRAM PARAMETER LIST (166)
CT CAUSE The file variable in a standard procedure or function call was
defaulted to OUTPUT, but OUTPUT did not appear in the program
parameter list.
ACTION Add 'OUTPUT' to the program heading or remove the redefinition
of 'OUTPUT', if one was made.
---------------------------------------------------------------------------------------
167 MESSAGE FORMAT EXPRESSION ALLOWED ONLY FOR TEXTFILES (167)
CT CAUSE A formatted output expression may only occur when writing to a
textfile or a string.
ACTION Remove the formatted expression from the code.
---------------------------------------------------------------------------------------
168 MESSAGE INTEGER VALUE IS REQUIRED HERE (168)
CT CAUSE The expressions specifying the field width and the number of
decimal digits for an output expression are not type integer or
a subrange of integer.
ACTION Replace with an integer expression.
---------------------------------------------------------------------------------------
169 MESSAGE SECOND FORMAT VALUE ALLOWED ONLY FOR REAL OR LONGREAL (169)
CT CAUSE The format value that specifies the number of decimal digits in
an output expression is only legal for output values of type
real or longreal.
ACTION Check type of parameter or remove decimal position specifier.
---------------------------------------------------------------------------------------
190 MESSAGE THIS PROGRAM PARAMETER WAS UNDECLARED: "! " (190)
CT CAUSE The identifier appeared in the program parameter list but was
never declared.
ACTION Add the identifier declaration.
---------------------------------------------------------------------------------------
191 MESSAGE DUPLICATE PROGRAM PARAMETER (191)
CT CAUSE There is more than one PARM parameter or more than one INFO
parameter in a program parameter list.
ACTION Remove duplicate declarations.
---------------------------------------------------------------------------------------