kargs: Just print args, don't add additional text

The Unix tradition is generally not to add English text unless
necessary.

This makes the output of this command more obviously parsable,
although I'm not entirely sure we should do this versus adding
`--json` or so, but eh, it's also not wrong.

Closes: #1833
Approved by: jlebon
This commit is contained in:
Colin Walters 2019-05-15 20:27:40 +00:00 committed by Atomic Bot
parent d829311a3a
commit cdd482f80b

View File

@ -261,8 +261,7 @@ rpmostree_builtin_kargs (int argc,
if (display_kernel_args)
{
g_print ("The kernel arguments are:\n%s\n",
old_kernel_arg_string);
g_print ("%s\n", old_kernel_arg_string);
return TRUE;
}