From 581476b7d2bb6713f10e160eb7c0b6365f71554a Mon Sep 17 00:00:00 2001 From: Darkvater Date: Thu, 10 Aug 2006 17:28:13 +0000 Subject: [PATCH] (svn r5836) - Silence a warning on mingw. Thanks glx. --- win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32.c b/win32.c index 0f789dbfaf..9f1cb6c15f 100644 --- a/win32.c +++ b/win32.c @@ -720,7 +720,7 @@ void FiosGetDrives(void) bool FiosIsValidFile(const char *path, const struct dirent *ent, struct stat *sb) { // hectonanoseconds between Windows and POSIX epoch - static const int64 posix_epoch_hns = 0x019DB1DED53E8000; + static const int64 posix_epoch_hns = 0x019DB1DED53E8000LL; const WIN32_FIND_DATA *fd = &ent->dir->fd; if (fd->dwFileAttributes & (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM)) return false;