diff options
author | jorton <jorton@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-11 20:09:44 +0000 |
---|---|---|
committer | jorton <jorton@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-11 20:09:44 +0000 |
commit | ffa9d3c3d895771b0060fee03d3cee57b9713ffa (patch) | |
tree | 91c33902475aa0dda19a31861ae1b8790c253b92 /test/testtime.c | |
parent | 5844250716e861703e1337de5413ddecd0f9385a (diff) | |
download | libapr-ffa9d3c3d895771b0060fee03d3cee57b9713ffa.tar.gz |
Remove unused variables.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64012 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testtime.c')
-rw-r--r-- | test/testtime.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/testtime.c b/test/testtime.c index 9ee67eecf..8ccab93f0 100644 --- a/test/testtime.c +++ b/test/testtime.c @@ -111,10 +111,8 @@ static void test_gmtstr(CuTest *tc) { apr_status_t rv; apr_time_exp_t xt; - time_t os_now; rv = apr_time_exp_gmt(&xt, now); - os_now = now / APR_USEC_PER_SEC; if (rv == APR_ENOTIMPL) { CuNotImpl(tc, "apr_time_exp_gmt"); } @@ -127,10 +125,8 @@ static void test_localstr(CuTest *tc) { apr_status_t rv; apr_time_exp_t xt; - time_t os_now; rv = apr_time_exp_lt(&xt, now); - os_now = now / APR_USEC_PER_SEC; if (rv == APR_ENOTIMPL) { CuNotImpl(tc, "apr_time_exp_lt"); } |