diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-02-21 14:51:56 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2022-02-21 17:22:23 +0100 |
commit | ef38bedbf9c713490912e07e279b6f6a524e54f3 (patch) | |
tree | 37f845bf637404d0b00da498c0c0b3bc0124e581 /src/analyze/analyze-blame.c | |
parent | analyze: move "condition" verb into analyze-condition.[ch] (diff) | |
download | systemd-ef38bedbf9c713490912e07e279b6f6a524e54f3.tar.xz systemd-ef38bedbf9c713490912e07e279b6f6a524e54f3.zip |
analyze: systematically name verb entry point functions verb_xyz()
Some of the functions so far were named do_xyz(), others dump_xyz() and
even others test_xyz(). let's instead name them exactly like the verb
exposed in the command line, just prefixed with verb_
Diffstat (limited to 'src/analyze/analyze-blame.c')
-rw-r--r-- | src/analyze/analyze-blame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze-blame.c b/src/analyze/analyze-blame.c index 6e0e560377..6cd6846956 100644 --- a/src/analyze/analyze-blame.c +++ b/src/analyze/analyze-blame.c @@ -5,7 +5,7 @@ #include "analyze-time-data.h" #include "format-table.h" -int analyze_blame(int argc, char *argv[], void *userdata) { +int verb_blame(int argc, char *argv[], void *userdata) { _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL; _cleanup_(unit_times_free_arrayp) UnitTimes *times = NULL; _cleanup_(table_unrefp) Table *table = NULL; |