From 475e058d40690803a4114f5aa9055023af6e6b4b Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 6 Oct 2013 21:04:25 -0700 Subject: Make Windows cross compile again But this is broken as the utf8/utf16 conversions in windows.c are gone without glib. Signed-off-by: Dirk Hohndel --- uemis-downloader.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'uemis-downloader.c') diff --git a/uemis-downloader.c b/uemis-downloader.c index 9f1dfb354..067e113b0 100644 --- a/uemis-downloader.c +++ b/uemis-downloader.c @@ -148,9 +148,11 @@ static int number_of_file(char *path) dirp = opendir(path); while ((entry = readdir(dirp)) != NULL) { - if (entry->d_type == DT_REG) { /* If the entry is a regular file */ +#ifndef WIN32 + if (entry->d_type == DT_REG) /* If the entry is a regular file */ +#endif count++; - } + } closedir(dirp); return count; -- cgit v1.2.3-70-g09d2