From 7518e2861b4e57c405f50af05ccca83b6a92cc67 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 9 Sep 2008 17:21:16 +0300 Subject: fix gcc warning --- src/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cache.c b/src/cache.c index dd8b482..cb19dc3 100644 --- a/src/cache.c +++ b/src/cache.c @@ -501,7 +501,7 @@ int ca_cache_lookup_sound( /* Hmm, is the entry older than the last change to our sound theme * dirs? Also, check for clock skews */ - if ((time_t) timestamp < last_change || (timestamp > now)) { + if ((time_t) timestamp < last_change || ((time_t) timestamp > now)) { remove_entry = TRUE; ret = CA_ERROR_NOTFOUND; goto finish; -- cgit