Specifications

742 H2INC Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 742 of 58 Printed: 10/09/00 02:49 PM
HI2171 operator : illegal operand
The given unary operator was used with an illegal operand type, as in the following
example:
int (*fp)();
double d,d1;
fp++;
d = ~d1;
HI2172 function : actual is not a pointer : parameter number
An attempt was made to pass an argument that was not a pointer to a function that
expected a pointer. The given number indicates which argument was in error.
HI2173 function : actual is not a pointer : parameter number1, parameter list number2
An attempt was made to pass a nonpointer argument to a function that expected a
pointer.
This error occurs in calls that return a pointer to a function. The first number indicates
the invalid argument.
HI2174 function : actual has type void : parameter number1, parameter list number2
An attempt was made to pass a void argument to a function. Formal parameters and
arguments to functions cannot have type void. They can, however, have type void *
(pointer to void).
This error occurs in calls that return a pointer to a function. The first number indicates
the invalid argument.
HI2177 constant too big
Information was lost because a constant value was too large to be represented in the
type to which it was assigned.
HI2178 identifier : storage class for same_seg variables must be extern
The given variable was specified in a same_seg pragma, but it was not declared with
extern storage class.
HI2179 identifier : was used in same_seg, but storage class is no longer extern
The given variable was specified in a same_seg pragma, but it was redeclared with a
storage class other than extern.