1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 10:51:20 +03:00

treewide: convert some left-over (usec_t) -1 to USEC_INFINITY

This commit is contained in:
Lennart Poettering 2014-11-28 20:52:55 +01:00
parent fed1e721fd
commit 46bcf49291
2 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@ static int timer_start(Unit *u) {
/* The timer has never run before, /* The timer has never run before,
* make sure a stamp file exists. * make sure a stamp file exists.
*/ */
touch_file(t->stamp_path, true, (usec_t) -1, UID_INVALID, GID_INVALID, 0); touch_file(t->stamp_path, true, USEC_INFINITY, UID_INVALID, GID_INVALID, 0);
} }
t->result = TIMER_SUCCESS; t->result = TIMER_SUCCESS;

View File

@ -36,7 +36,7 @@ static void setup_test_dir(char *tmp_dir, const char *files, ...) {
va_start(ap, files); va_start(ap, files);
while (files != NULL) { while (files != NULL) {
_cleanup_free_ char *path = strappend(tmp_dir, files); _cleanup_free_ char *path = strappend(tmp_dir, files);
assert_se(touch_file(path, true, (usec_t) -1, UID_INVALID, GID_INVALID, 0) == 0); assert_se(touch_file(path, true, USEC_INFINITY, UID_INVALID, GID_INVALID, 0) == 0);
files = va_arg(ap, const char *); files = va_arg(ap, const char *);
} }
va_end(ap); va_end(ap);