New review comment by paper42 on void-packages repository https://github.com/void-linux/void-packages/pull/37933#discussion_r918335923 Comment: Why did you just delete part of the program? Fix it properly ``` ../src/main.c:163:8: error: assignment of read-only variable 'stdin' 163 | stdin = fopen("/dev/null", "r"); | ^ ../src/main.c:164:9: error: assignment of read-only variable 'stdout' 164 | stdout = fopen(log_file, "w"); | ^ ../src/main.c:185:9: error: assignment of read-only variable 'stderr' 185 | stderr = fopen(err_log_file, "w"); | ^ ```