From 66374c61eecd64fe4cb033369291a6b617d7e45d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 7 Apr 2005 20:10:03 +0000 Subject: (binary_operator) [LINT]: Initialize lt and rt to 0. --- src/test.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/test.c') diff --git a/src/test.c b/src/test.c index c0edcd513..98feaafbb 100644 --- a/src/test.c +++ b/src/test.c @@ -434,7 +434,8 @@ binary_operator (bool l_is_l) if (argv[op][2] == 't' && !argv[op][3]) { /* nt - newer than */ - time_t lt, rt; + time_t lt IF_LINT (= 0); + time_t rt IF_LINT (= 0); bool le, re; pos += 3; if (l_is_l | r_is_l) @@ -505,7 +506,8 @@ binary_operator (bool l_is_l) if ('t' == argv[op][2] && '\000' == argv[op][3]) { /* ot - older than */ - time_t lt, rt; + time_t lt IF_LINT (= 0); + time_t rt IF_LINT (= 0); bool le, re; pos += 3; if (l_is_l | r_is_l) -- cgit v1.2.3-54-g00ecf