]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix coding style. master
authorMichael R Sweet <msweet@msweet.org>
Thu, 27 Nov 2025 23:23:59 +0000 (18:23 -0500)
committerMichael R Sweet <msweet@msweet.org>
Thu, 27 Nov 2025 23:23:59 +0000 (18:23 -0500)
scheduler/auth.c

index 802659481a0aa9a0e9c3c2076df3437e7ddbfea7..0e0d722377b0ce41eb58ed06d879bd76154a8df0 100644 (file)
@@ -1616,15 +1616,19 @@ cupsdFindOAuthGroup(const char *name)   /* I - Group name */
  * 'cupsdFreeLocation()' - Free all memory used by a location.
  */
 
-void cupsdFreeLocation(cupsd_location_t *loc, /* I - Location to free */
-                       void *data)            /* Unused */
+void
+cupsdFreeLocation(
+    cupsd_location_t *loc,             /* I - Location to free */
+    void             *data)            /* Unused */
 {
   (void)data;
+
   cupsArrayDelete(loc->names);
   cupsArrayDelete(loc->allow);
   cupsArrayDelete(loc->deny);
 
   _cupsStrFree(loc->location);
+
   free(loc);
 }