From bb66a03fefb43cead6e059875cc5ad78a2401ec3 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 20 Aug 2018 11:17:57 -0400 Subject: [PATCH] ostree/config: Delete rogue printf and tweak help Minor tweak to the new `--group` flag help string. Also drop an extraneous `printf`. Closes: #1710 Approved by: sinnykumari --- src/ostree/ot-builtin-config.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ostree/ot-builtin-config.c b/src/ostree/ot-builtin-config.c index b9fa824d..4368f50c 100644 --- a/src/ostree/ot-builtin-config.c +++ b/src/ostree/ot-builtin-config.c @@ -36,7 +36,7 @@ static char* opt_group; */ static GOptionEntry options[] = { - { "group", 0, 0, G_OPTION_ARG_STRING, &opt_group , "Group name followed by key for a remote config", NULL }, + { "group", 0, 0, G_OPTION_ARG_STRING, &opt_group , "Group name", NULL }, { NULL } }; @@ -88,7 +88,6 @@ ostree_builtin_config (int argc, char **argv, OstreeCommandInvocation *invocatio if (!strcmp (op, "set")) { - printf("GROUP NUMBER = %s %d\n", opt_group, argc); if (opt_group) { if (argc < 4)