]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
time-util: drop redundant space
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 13 Feb 2023 16:38:57 +0000 (01:38 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 23 Feb 2023 23:55:27 +0000 (08:55 +0900)
src/basic/time-util.c

index bae62ce411f9b06ef95a6b4551fb9fc109f2faf0..b26c94e49244bb7b8c9f89c339b632534c9546e2 100644 (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 ||