pytime: oops, fix typos on Windows
diff --git a/Python/pytime.c b/Python/pytime.c
index 1b20dc7..9d0b0fa 100644
--- a/Python/pytime.c
+++ b/Python/pytime.c
@@ -253,7 +253,7 @@
     _PyTime_t t;
     int res = 0;
 
-    assert(sizeof(ts->tv_sec) <= sizeof(_PyTime_t));
+    assert(sizeof(tv->tv_sec) <= sizeof(_PyTime_t));
     t = (_PyTime_t)tv->tv_sec;
 
     if (_PyTime_check_mul_overflow(t, SEC_TO_NS)) {
@@ -608,7 +608,7 @@
     assert(info == NULL || raise);
 
     ticks = GetTickCount64();
-    assert(sizeof(result) <= sizeof(_PyTime_t));
+    assert(sizeof(ticks) <= sizeof(_PyTime_t));
     t = (_PyTime_t)ticks;
 
     if (_PyTime_check_mul_overflow(t, MS_TO_NS)) {