stoddard 00/01/17 15:17:39
Modified: src/lib/apr/time/win32 time.c
Log:
Humm, ULONGLONG does not appear to be recognised by VC++ 5.0
Revision Changes Path
1.6 +1 -1 apache-2.0/src/lib/apr/time/win32/time.c
Index: time.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/time/win32/time.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- time.c 2000/01/17 04:42:27 1.5
+++ time.c 2000/01/17 23:17:37 1.6
@@ -114,7 +114,7 @@
/* Return micro-seconds since the Unix epoch (jan. 1, 1970) */
ap_time_t ap_now(void)
{
- ULONGLONG aprtime = 0;
+ LONGLONG aprtime = 0;
FILETIME time;
GetSystemTimeAsFileTime(&time);
FileTimeToAprTime(&aprtime, &time);