You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/29 19:30:38 UTC

svn commit: r809168 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c

Author: mturk
Date: Sat Aug 29 17:30:38 2009
New Revision: 809168

URL: http://svn.apache.org/viewvc?rev=809168&view=rev
Log:
Fix messy svn commits

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c?rev=809168&r1=809167&r2=809168&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/time.c Sat Aug 29 17:30:38 2009
@@ -58,7 +58,7 @@
     WORD         dt;
 
     /* Round up to two seconds */
-    t = ACR_ALIGN((t / ACR_USEC_PER_SEC), 2) * ACR_USEC_PER_SEC);
+    t = ACR_ALIGN((t / ACR_USEC_PER_SEC), 2) * ACR_USEC_PER_SEC;
     UsecTimeToFileTime(&ft, t);
     if (FileTimeToDosDateTime(&ft, &dd, &dt))
         return ((acr_uint32_t)dd << 16) | (acr_uint32_t)dt;