C023000C
Explanation
The ftell() function was called to get the current file position. The offset exceeds the maximum value that can be returned. The offset maximum is LONG_MAX.
Programmer response
Use the large files version of ftello() or the fgetpos() function to report positions beyond LONG_MAX.
Symbolic Feedback Code
JrEdcGposEftell01