]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
select.c: Ajust indentation due code guidelines
authorZdenek Dohnal <zdohnal@redhat.com>
Tue, 7 Oct 2025 11:47:44 +0000 (13:47 +0200)
committerZdenek Dohnal <zdohnal@redhat.com>
Tue, 7 Oct 2025 11:47:44 +0000 (13:47 +0200)
scheduler/select.c

index 634f0d4e2c3f10709643b2000dbbc2ce3cf1d265..be225a9f91d5fa46c9ba48b5c6a49d77966e91cd 100644 (file)
@@ -185,12 +185,12 @@ static struct pollfd      *cupsd_pollfds = NULL;
 //
 
 static int     compare_fds(_cupsd_fd_t *a, _cupsd_fd_t *b, void *data);
-static _cupsd_fd_t     *find_fd(int fd);
-#define                        release_fd(f) { \
-                         (f)->use --; \
-                         if (!(f)->use) free((f));\
-                       }
-#define                        retain_fd(f) (f)->use++
+static _cupsd_fd_t *find_fd(int fd);
+#define                release_fd(f) { \
+                 (f)->use --; \
+                 if (!(f)->use) free((f));\
+               }
+#define                retain_fd(f) (f)->use++
 
 
 //