C/C++ Programmer's Guide (G06.27+, H06.08+, J06.03+)

55
Missing or invalid parameter
Cause
A required parameter is missing or too many parameters were passed.
Effect
Program behavior depends on the function that was called and the language in which it is
written.
Recovery
Correct the program to pass a valid parameter.
56
Invalid parameter value
Cause
The value passed as a procedure parameter was invalid.
Effect
Program behavior depends on the function that was called and the language in which it is
written.
Recovery
Correct the program to pass a valid parameter value.
57
Parameter value not accepted
Cause
The value passed as a procedure parameter is not acceptable in the context in which it is passed.
For example, the number of bytes in a write request is greater than the number of bytes per
record in the file.
Effect
Program behavior depends on the function that was called and the language in which it is
written.
Recovery
Correct the program to pass a valid parameter.
Input/Output Messages
The CRE or run-time libraries report the messages in this subsection if an error occurs when calling
an I/O function.
59
Standard input file error ( error ) Unable to open filename
Cause
The file system reported an error when a routine tried to access the standard input file. error
is a file-system error number.
Unable to open filename appears when the C run-time library cannot open the standard
input file during program initialization. filename shows the name for which the open operation
failed.
Input/Output Messages 375