C00B0123

Explanation

The mode argument passed to fopen() or freopen() specified type=blocked, but the open file is a terminal I/O file which does not support type=blocked keyword.

Programmer response

Correct the mode argument. Terminal I/O does not support type=blocked open mode. Remove type=blocked keyword.

Symbolic Feedback Code

JrEdc1opsEbadmode35