summaryrefslogtreecommitdiff
path: root/test/testtime.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-01-02 13:54:47 +0000
committerJeff Trawick <trawick@apache.org>2003-01-02 13:54:47 +0000
commit3b570d6c1f1536f3c44095bdbb2f91cf2fcb7986 (patch)
tree96ee701edfb901088dc8574b87a8a565573785c2 /test/testtime.c
parente583cf894ce4226a286d71c5c5a424ceb4cf9f8d (diff)
downloadapr-3b570d6c1f1536f3c44095bdbb2f91cf2fcb7986.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: https://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)
{