summaryrefslogtreecommitdiffstats
path: root/src/analyze/analyze-timespan.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-02-21 14:51:56 +0100
committerLennart Poettering <lennart@poettering.net>2022-02-21 17:22:23 +0100
commitef38bedbf9c713490912e07e279b6f6a524e54f3 (patch)
tree37f845bf637404d0b00da498c0c0b3bc0124e581 /src/analyze/analyze-timespan.c
parentanalyze: move "condition" verb into analyze-condition.[ch] (diff)
downloadsystemd-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-timespan.c')
-rw-r--r--src/analyze/analyze-timespan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze-timespan.c b/src/analyze/analyze-timespan.c
index 8a0fbe534c..8d7cd2ddd5 100644
--- a/src/analyze/analyze-timespan.c
+++ b/src/analyze/analyze-timespan.c
@@ -8,7 +8,7 @@
#include "strv.h"
#include "terminal-util.h"
-int dump_timespan(int argc, char *argv[], void *userdata) {
+int verb_timespan(int argc, char *argv[], void *userdata) {
char **input_timespan;
STRV_FOREACH(input_timespan, strv_skip(argv, 1)) {