wrowe 2002/06/12 14:56:49
Modified: include apr_time.h
Log:
Fix a typo pointed out by Greg Marr [thx!]
Revision Changes Path
1.52 +2 -1 apr/include/apr_time.h
Index: apr_time.h
===================================================================
RCS file: /home/cvs/apr/include/apr_time.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- apr_time.h 12 Jun 2002 07:39:31 -0000 1.51
+++ apr_time.h 12 Jun 2002 21:56:49 -0000 1.52
@@ -101,7 +101,8 @@
#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