C00B0121
Explanation
The mode argument passed to fopen() or freopen() specified type=blocked, but the open mode did not specify binary.
Programmer response
Correct the mode argument. Blocked I/O requires a binary open mode. Either remove type=blocked or specify a binary open mode.
Symbolic Feedback Code
JrEdc1opsEbadmode33