Fix cross compiling in Linux

Change: #include "fileLister_win32.h" -> #include "filelister_win32.h"
This commit is contained in:
Reijo Tomperi 2010-03-31 22:54:35 +03:00
parent 9e393fd92e
commit c460c16cee
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
#include "filelister.h"
#if defined(_WIN32)
#include "fileLister_win32.h"
#include "filelister_win32.h"
#else // POSIX-style system
#include "filelister_unix.h"
#endif