diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-14 21:44:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-14 21:44:23 +0000 |
commit | def39682628f0b5575d61bf5b6ce259c5da11d0c (patch) | |
tree | 7d71381825a4976efa81157b184f673dd307cd36 /openpatch.c | |
parent | f5fedc1282be886c84f573782c70d9dde50fcedc (diff) |
these pragmas are only used for MSVC, not MinGW or Cygwin, therefore changing the define from NT to _MSC_VER
svn path=/trunk/externals/ext13/; revision=3901
Diffstat (limited to 'openpatch.c')
-rw-r--r-- | openpatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openpatch.c b/openpatch.c index f1979bd..151f0fd 100644 --- a/openpatch.c +++ b/openpatch.c @@ -14,7 +14,7 @@ #endif #include <string.h> -#ifdef NT +#ifdef _MSC_VER #pragma warning( disable : 4244 ) #pragma warning( disable : 4305 ) #endif |