1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-12 13:18:14 +03:00

time-util: drop redundant space

This commit is contained in:
Yu Watanabe 2023-02-14 01:38:57 +09:00
parent 6b04af6072
commit 7464953f33

View File

@ -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 ||