summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-01-20 00:30:50 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-01-20 00:30:50 +0100
commit53452dacebab0f03efdddc7e8e7fe60aa9753f5c (patch)
tree21b1e2d6578c705061767c9f4a48262b198c11e3
parent007c5d362753d28a0676ce7938f7cfeaba283c31 (diff)
downloadcurl-bagder/parsedate-long.tar.gz
fixup MSVC warningbagder/parsedate-long
-rw-r--r--tests/libtest/lib517.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/libtest/lib517.c b/tests/libtest/lib517.c
index dda77aa4a..a30c2d5ce 100644
--- a/tests/libtest/lib517.c
+++ b/tests/libtest/lib517.c
@@ -126,7 +126,10 @@ struct dcheck dates[] = {
{"Sun, 06 Nov 2044 08:49:37 GMT", 2362034977 },
{"Sun, 06 Nov 3144 08:49:37 GMT", 37074617377 },
#ifndef HAVE_TIME_T_UNSIGNED
+#if 0
+ /* causes warning on MSVC */
{"Sun, 06 Nov 1900 08:49:37 GMT", -2182259423 },
+#endif
{"Sun, 06 Nov 1800 08:49:37 GMT", -5337933023 },
{"Thu, 01-Jan-1583 00:00:00 GMT", -12212553600 },
#endif