diff options
| author | Pavel Janík <[email protected]> | 2016-09-02 20:50:59 +0200 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2016-09-02 20:50:59 +0200 |
| commit | 7c069a70931a6bb27d060927765146d4c6ceced4 (patch) | |
| tree | 377fb513d210da211f92345c6972c90a50e3cb92 /src/util.h | |
| parent | Merge #8466: [Trivial] Do not shadow variables in networking code (diff) | |
| download | discoin-7c069a70931a6bb27d060927765146d4c6ceced4.tar.xz discoin-7c069a70931a6bb27d060927765146d4c6ceced4.zip | |
Do not shadow global variable
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 39328b51e..45b365855 100644 --- a/src/util.h +++ b/src/util.h @@ -93,7 +93,7 @@ bool error(const char* fmt, const Args&... args) void PrintExceptionContinue(const std::exception *pex, const char* pszThread); void ParseParameters(int argc, const char*const argv[]); -void FileCommit(FILE *fileout); +void FileCommit(FILE *file); bool TruncateFile(FILE *file, unsigned int length); int RaiseFileDescriptorLimit(int nMinFD); void AllocateFileRange(FILE *file, unsigned int offset, unsigned int length); |