]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shared/vpick: also align function params in header
authorMike Yuan <me@yhndnzj.com>
Tue, 16 Apr 2024 04:27:23 +0000 (12:27 +0800)
committerLuca Boccassi <luca.boccassi@gmail.com>
Tue, 16 Apr 2024 08:46:50 +0000 (10:46 +0200)
Follow-up for 6d8690ecd34a6c9450e78e242e07b1a4479d6d27

src/shared/vpick.h

index 591852e986fc27299865eec5c2a83b33f8358497..21ce6684041efcaa02e58b744fde5432bf47801f 100644 (file)
@@ -42,12 +42,13 @@ typedef struct PickResult {
 
 void pick_result_done(PickResult *p);
 
-int path_pick(const char *toplevel_path,
-              int toplevel_fd,
-              const char *path,
-              const PickFilter *filter,
-              PickFlags flags,
-              PickResult *ret);
+int path_pick(
+                const char *toplevel_path,
+                int toplevel_fd,
+                const char *path,
+                const PickFilter *filter,
+                PickFlags flags,
+                PickResult *ret);
 
 int path_pick_update_warn(
                 char **path,