diff options
author | Kay Sievers <kay@vrfy.org> | 2014-07-29 12:23:31 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-07-29 13:20:20 +0200 |
commit | 3a43da2832dc5360a638d043f469a6dcbe025582 (patch) | |
tree | e3b60e840bb087c1af7f458676e3ab6bf04ea49e /src/journal | |
parent | cf347234ae78630dd4aad8907f027965e7fb9040 (diff) |
time-util: add and use USEC/NSEC_INFINIY
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journal-vacuum.c | 6 | ||||
-rw-r--r-- | src/journal/journald.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/journal/journal-vacuum.c b/src/journal/journal-vacuum.c index 891b6bb848..7699482a77 100644 --- a/src/journal/journal-vacuum.c +++ b/src/journal/journal-vacuum.c @@ -89,15 +89,15 @@ static void patch_realtime( assert(realtime); x = timespec_load(&st->st_ctim); - if (x > 0 && x != (usec_t) -1 && x < *realtime) + if (x > 0 && x != USEC_INFINITY && x < *realtime) *realtime = x; x = timespec_load(&st->st_atim); - if (x > 0 && x != (usec_t) -1 && x < *realtime) + if (x > 0 && x != USEC_INFINITY && x < *realtime) *realtime = x; x = timespec_load(&st->st_mtim); - if (x > 0 && x != (usec_t) -1 && x < *realtime) + if (x > 0 && x != USEC_INFINITY && x < *realtime) *realtime = x; /* Let's read the original creation time, if possible. Ideally diff --git a/src/journal/journald.c b/src/journal/journald.c index 886ac92a79..d6b235c12b 100644 --- a/src/journal/journald.c +++ b/src/journal/journald.c @@ -65,7 +65,7 @@ int main(int argc, char *argv[]) { "STATUS=Processing requests..."); for (;;) { - usec_t t = (usec_t) -1, n; + usec_t t = USEC_INFINITY, n; r = sd_event_get_state(server.event); if (r < 0) |