From: Yu Watanabe Date: Mon, 13 Feb 2023 16:38:57 +0000 (+0900) Subject: time-util: drop redundant space X-Git-Tag: v254-rc1~1163^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7464953f33dbb70f668c7854b5750db5c3f7dc66;p=thirdparty%2Fsystemd.git time-util: drop redundant space --- diff --git a/src/basic/time-util.c b/src/basic/time-util.c index bae62ce411f..b26c94e4924 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 ||