summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-12 21:56:49 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-12 21:56:49 +0000
commit69c4a1a60fce781163d5717581b6c9b35000e20d (patch)
tree12e5d9466f5103795971bb5f42585e3a2d5e3ea8
parentf5a7a08baa0189842fcbca669b33db8740bf6e46 (diff)
downloadlibapr-69c4a1a60fce781163d5717581b6c9b35000e20d.tar.gz
Fix a typo pointed out by Greg Marr [thx!]
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63499 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_time.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apr_time.h b/include/apr_time.h
index 64b8c125f..4125e6083 100644
--- a/include/apr_time.h
+++ b/include/apr_time.h
@@ -101,7 +101,8 @@ typedef apr_int32_t apr_short_interval_time_t;
#define APR_TIME_FROM_SEC(sec) ((apr_time_t)(sec) * APR_USEC_PER_SEC)
-#define APR_TIME_MAKE(sec, usec) ((apr_time_t)(sec) * APR_USEC_PER_SEC + usec)
+#define APR_TIME_MAKE(sec, usec) ((apr_time_t)(sec) * APR_USEC_PER_SEC \
+ + (apr_time_t)(usec))
/**
* return the current time