From 6a2ec40b76909651656d034d38a4c537342bdbde Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Wed, 16 Aug 2006 15:52:38 +0000 Subject: [PATCH] Fixed typo introduced in rev. 850, needed for the tests to pass with MSVC 2005 --- src/timegm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timegm.h b/src/timegm.h index 2d4a09ae..153ec15e 100644 --- a/src/timegm.h +++ b/src/timegm.h @@ -7,7 +7,7 @@ #define TIMEGM_H_ /* Visual Studio C++ 2005 (8.0) uses 64 bit time_t, which doesn't work */ -#if defined _MSV_VER && _MSC_VER >= 1400 +#if defined _MSC_VER && _MSC_VER >= 1400 # define _USE_32BIT_TIME_T #endif