summaryrefslogtreecommitdiff
path: root/time/win32/time.c
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2000-01-17 23:17:37 +0000
committerBill Stoddard <stoddard@apache.org>2000-01-17 23:17:37 +0000
commitc334d184e55e8aa92ef32837430083d563feb1ba (patch)
tree413ef3fedd907bc8c443a57bb53a33214ccdc72b /time/win32/time.c
parentcfb9658767842450d16149e7cce7db38f4ef9a6b (diff)
downloadapr-c334d184e55e8aa92ef32837430083d563feb1ba.tar.gz
Humm, ULONGLONG does not appear to be recognised by VC++ 5.0
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time/win32/time.c')
-rw-r--r--time/win32/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time/win32/time.c b/time/win32/time.c
index e2ad9c18e..ed0dce122 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -114,7 +114,7 @@ ap_status_t ap_ansi_time_to_ap_time(ap_time_t *result, time_t input)
/* 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);