From 2724566a2ab581c8a217091be1305def31300afa Mon Sep 17 00:00:00 2001 From: Ula Shipman Date: Wed, 4 Jun 2025 10:45:49 -0700 Subject: [PATCH] tools: Reorder upower(1) command-line options to match manual page --- tools/up-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/up-tool.c b/tools/up-tool.c index 4e0cbf9..eb941fa 100644 --- a/tools/up-tool.c +++ b/tools/up-tool.c @@ -203,8 +203,8 @@ main (int argc, char **argv) UpDevice *device; const GOptionEntry entries[] = { - { "enumerate", 'e', 0, G_OPTION_ARG_NONE, &opt_enumerate, _("Enumerate objects paths for devices"), NULL }, { "dump", 'd', 0, G_OPTION_ARG_NONE, &opt_dump, _("Dump all parameters for all objects"), NULL }, + { "enumerate", 'e', 0, G_OPTION_ARG_NONE, &opt_enumerate, _("Enumerate objects paths for devices"), NULL }, { "monitor", 'm', 0, G_OPTION_ARG_NONE, &opt_monitor, _("Monitor activity from the power daemon"), NULL }, { "monitor-detail", 0, 0, G_OPTION_ARG_NONE, &opt_monitor_detail, _("Monitor with detail"), NULL }, { "show-info", 'i', 0, G_OPTION_ARG_STRING, &opt_show_info, _("Show information about object path"), NULL },