diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-02-13 17:38:57 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-02-24 00:55:27 +0100 |
commit | 7464953f33dbb70f668c7854b5750db5c3f7dc66 (patch) | |
tree | 22fcea69b7f225648b53a9fbed6a9d48941bdf00 /src/basic/time-util.c | |
parent | time-util: drop unused definition of FORMAT_TIMESTAMP_WIDTH (diff) | |
download | systemd-7464953f33dbb70f668c7854b5750db5c3f7dc66.tar.xz systemd-7464953f33dbb70f668c7854b5750db5c3f7dc66.zip |
time-util: drop redundant space
Diffstat (limited to 'src/basic/time-util.c')
-rw-r--r-- | src/basic/time-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/time-util.c b/src/basic/time-util.c index bae62ce411..b26c94e492 100644 --- a/src/basic/time-util.c +++ b/src/basic/time-util.c @@ -228,7 +228,7 @@ nsec_t timespec_load_nsec(const struct timespec *ts) { return (nsec_t) ts->tv_sec * NSEC_PER_SEC + (nsec_t) ts->tv_nsec; } -struct timespec *timespec_store(struct timespec *ts, usec_t u) { +struct timespec *timespec_store(struct timespec *ts, usec_t u) { assert(ts); if (u == USEC_INFINITY || @@ -244,7 +244,7 @@ struct timespec *timespec_store(struct timespec *ts, usec_t u) { return ts; } -struct timespec *timespec_store_nsec(struct timespec *ts, nsec_t n) { +struct timespec *timespec_store_nsec(struct timespec *ts, nsec_t n) { assert(ts); if (n == NSEC_INFINITY || |