Skip to content

Commit

Permalink
fix typo in non VS build
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Nov 8, 2018
1 parent eb104f9 commit 7249571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ccutil/fileio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ std::string File::JoinPath(const std::string& prefix, const std::string& suffix)

bool File::Delete(const char* pathname) {
#if !defined(_WIN32) || defined(__MINGW32__)
const int status = unlink(pathname)
const int status = unlink(pathname);
#else
const int status = _unlink(pathname);
#endif
Expand Down

0 comments on commit 7249571

Please sign in to comment.