]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
src/libcgroup_systemd_idle_thread.c: fix coding style complaint
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Fri, 11 Aug 2023 06:55:04 +0000 (12:25 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Fri, 11 Aug 2023 17:37:54 +0000 (11:37 -0600)
Fix the checkpatch.pl warnings, making it coding style complaint.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
src/libcgroup_systemd_idle_thread.c

index 1b3b06e4359372cda316ea84ae8cc739ee46a514..e68ae3805b76ae4758af7c0c88c4c4d5e260df31 100644 (file)
@@ -1,10 +1,10 @@
 #include <unistd.h>
 
-#define SECS_PER_DAY   (60 * 60 *24)
+#define SECS_PER_DAY   (60 * 60 * 24)
 
 int main(void)
 {
-       while(1)
+       while (1)
                sleep(1 * SECS_PER_DAY);
 
        return 0;