summaryrefslogtreecommitdiff
path: root/test/testtime.c
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2003-01-02 13:54:47 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2003-01-02 13:54:47 +0000
commit43364455d6395ac4b1492e67d8ce2970d45b321b (patch)
tree96ee701edfb901088dc8574b87a8a565573785c2 /test/testtime.c
parente6e75787e87f2e884427a797e8cfd2904e5f8868 (diff)
downloadlibapr-43364455d6395ac4b1492e67d8ce2970d45b321b.tar.gz
fix the type of an integer constant, which with xlc will remove
a warning and get 6 more time tests to work git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64255 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testtime.c')
-rw-r--r--test/testtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testtime.c b/test/testtime.c
index 417410817..787d1cca9 100644
--- a/test/testtime.c
+++ b/test/testtime.c
@@ -68,7 +68,7 @@
* 2002-08-14 12:05:36.186711 -25200 [257 Sat].
* Which happens to be when I wrote the new tests.
*/
-static apr_time_t now = 1032030336186711;
+static apr_time_t now = 1032030336186711LL;
static char* print_time (apr_pool_t *pool, const apr_time_exp_t *xt)
{