]> sjero.net Git - wget/commitdiff
[svn] Fix typo affecting Windows build.
authorhniksic <devnull@localhost>
Fri, 8 Apr 2005 09:18:26 +0000 (02:18 -0700)
committerhniksic <devnull@localhost>
Fri, 8 Apr 2005 09:18:26 +0000 (02:18 -0700)
src/ChangeLog
src/ptimer.c

index a2a621062c25e42dd6a9d8caf00efe4617291a93..1b74862d61b16aca07515d8e4dfb0a11c658f0a8 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * ptimer.c (ptimer_diff): Fix typo affecting Windows build.
+
 2005-04-08  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * ptimer.c (ptimer_init): In fact, _POSIX_MONOTONIC_CLOCK needs to
index 47980cfcd2edc1bf0a34763d28c9686200c4d2cc..4fb54cf81c2d502e0e38fb37d326c5bb2322c148 100644 (file)
@@ -314,7 +314,7 @@ ptimer_diff (ptimer_system_time *pst1, ptimer_system_time *pst2)
 #endif
 
 #ifdef WINDOWS
-  if (using_hires_timers)
+  if (windows_hires_timers)
     return (pst1->hires.QuadPart - pst2->hires.QuadPart) / windows_hires_msfreq;
   else
     return pst1->lores - pst2->lores;