diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-10 02:29:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-10 02:29:25 +0300 |
commit | 0eaeb9e50cb6114b0808ee140326ab015c533cee (patch) | |
tree | a8a448b59460fccec64b3ef17ed0182f1b337d64 /src/fs | |
parent | 50c489bc7a36972186cdb843c0582195f37e4549 (diff) | |
download | plus-0eaeb9e50cb6114b0808ee140326ab015c533cee.tar.gz plus-0eaeb9e50cb6114b0808ee140326ab015c533cee.tar.bz2 plus-0eaeb9e50cb6114b0808ee140326ab015c533cee.tar.xz plus-0eaeb9e50cb6114b0808ee140326ab015c533cee.zip |
Fix compilation warnings with mingw.
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/files.cpp b/src/fs/files.cpp index ab40a7d8f..6c4792270 100644 --- a/src/fs/files.cpp +++ b/src/fs/files.cpp @@ -293,7 +293,7 @@ void Files::deleteFilesInDirectory(std::string path) void Files::enumFiles(StringVect &files, std::string path, - const bool skipSymlinks) + const bool skipSymlinks A_WIN_UNUSED) { if (findLast(path, "/") == false) path += "/"; |