mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:05:43 +01:00
axfer: fix no return statement in print_help() function
A function, print_help() in xfer module is defined to return integer
value, however this is useledd.
This commit fixes it.
Fixes: 908ff69be2
('axfer: print help text of transfer subcommand just for common options')
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
97fe7b550c
commit
7d0eacc3bb
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ enum no_short_opts {
|
|||
OPT_PROCESS_ID_FILE,
|
||||
};
|
||||
|
||||
static int print_help()
|
||||
static void print_help()
|
||||
{
|
||||
printf(
|
||||
"Usage:\n"
|
||||
|
|
Loading…
Reference in a new issue