Skip to content

Commit 7249571

Browse files
committed
fix typo in non VS build
1 parent eb104f9 commit 7249571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ccutil/fileio.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ std::string File::JoinPath(const std::string& prefix, const std::string& suffix)
8787

8888
bool File::Delete(const char* pathname) {
8989
#if !defined(_WIN32) || defined(__MINGW32__)
90-
const int status = unlink(pathname)
90+
const int status = unlink(pathname);
9191
#else
9292
const int status = _unlink(pathname);
9393
#endif

0 commit comments

Comments
 (0)