From 954e3622e8e28b75ec665a39c378ba091fc4ccf2 Mon Sep 17 00:00:00 2001 From: Hib Eris Date: Sat, 23 Jun 2012 17:52:13 +0200 Subject: [PATCH 2/5] Fix compile warning on signed/unsigned comparison --- goo/gfile.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/goo/gfile.cc b/goo/gfile.cc index d56df98..c66d21c 100644 --- a/goo/gfile.cc +++ b/goo/gfile.cc @@ -461,7 +461,7 @@ FILE *openFile(const char *path, const char *mode) { char nPath[_MAX_PATH + 1]; wchar_t wMode[8]; const char *p; - int i; + size_t i; // NB: _wfopen is only available in NT version.dwOSVersionInfoSize = sizeof(version); -- 1.7.5.4