time_t is 64 bits in all the newer Microsoft C libraries, not just 64-bit
[platform/upstream/glib.git] / glib / gtimer.c
index bfc559a..3e9a1a6 100644 (file)
@@ -422,7 +422,7 @@ g_time_val_to_iso8601 (GTimeVal *time_)
   
   g_return_val_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC, NULL);
 
-#ifdef _WIN64
+#ifdef _WIN32
   {
     time_t secs = time_->tv_sec;
     tm = gmtime (&secs);