1
0

repeating: use wb+ mode only in sequential mode

This commit is contained in:
Intel A80486DX2-66 2024-06-02 14:31:18 +03:00
parent 755336c103
commit c6e126f2bd
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -217,7 +217,7 @@ main(void)
// 1. open file
FILE* output_file = fopen(OUTPUT_FILE,
"wb"
#if REPEAT_TIMES > 0
#if REPEAT_TIMES > 0 && SEQUENTIAL_MODE
"+"
#endif
);