This continues #8105.
There is a global variable fileout and the same name is used as an argument for FileCommit().
The change here fixes the following warning:
util.cpp:604:23: warning: declaration shadows a variable in the global namespace [-Wshadow]
void FileCommit(FILE *fileout)
^
util.cpp:192:14: note: previous declaration is here
static FILE* fileout = __null;
^
1 warning generated.
The function FileCommit is used also for other files, not only the global fileout, so I have changed the argument name to file to match other functions there.