diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-04-16 06:27:23 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-04-16 10:46:50 +0200 |
commit | fecea05e150d2df34f743d85948e23335315d3d5 (patch) | |
tree | 27da905ed73de239ba2a423d10dfde25e4764e81 /src/shared/vpick.h | |
parent | Merge pull request #32289 from bluca/counter (diff) | |
download | systemd-fecea05e150d2df34f743d85948e23335315d3d5.tar.xz systemd-fecea05e150d2df34f743d85948e23335315d3d5.zip |
shared/vpick: also align function params in header
Follow-up for 6d8690ecd34a6c9450e78e242e07b1a4479d6d27
Diffstat (limited to '')
-rw-r--r-- | src/shared/vpick.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/shared/vpick.h b/src/shared/vpick.h index 591852e986..21ce668404 100644 --- a/src/shared/vpick.h +++ b/src/shared/vpick.h @@ -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, |