diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-03 18:16:35 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-03 18:16:35 +0100 |
commit | 86caf09519c702f38552ba4f789b55a562fc29c5 (patch) | |
tree | 8b61fe3a92902fa79aa125d5a0b778f61ff0dab9 /src/shared/time-util.h | |
parent | c05482281c32bd408808b14c5fb03e706e65602d (diff) |
core: use some nice macros where appropriate
Diffstat (limited to 'src/shared/time-util.h')
-rw-r--r-- | src/shared/time-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/time-util.h b/src/shared/time-util.h index fbfbcbffcc..fca8a4db9b 100644 --- a/src/shared/time-util.h +++ b/src/shared/time-util.h @@ -67,7 +67,7 @@ typedef struct dual_timestamp { #define TIME_T_MAX (time_t)((1UL << ((sizeof(time_t) << 3) - 1)) - 1) -#define DUAL_TIMESTAMP_NULL ((struct dual_timestamp) { 0, 0 }) +#define DUAL_TIMESTAMP_NULL ((struct dual_timestamp) { 0ULL, 0ULL }) usec_t now(clockid_t clock); |