1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-25 01:34:28 +03:00

shared/vpick: also align function params in header

Follow-up for 6d8690ecd3
This commit is contained in:
Mike Yuan 2024-04-16 12:27:23 +08:00 committed by Luca Boccassi
parent 3721f9620c
commit fecea05e15

View 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,