mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Fix C function prototypes
This fixes Wstrict-prototypes warnings.
This commit is contained in:
parent
0404876d7b
commit
7e9d4f9e73
1 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ static int stdin_available(void) {
|
|||
return errno != EBADF;
|
||||
}
|
||||
|
||||
static void print_version () {
|
||||
static void print_version (void) {
|
||||
printf (ARD_PROG_NAME " " VERSION "\n\n");
|
||||
printf (
|
||||
"Copyright (C) 2014 Robin Gareus <robin@gareus.org>\n"
|
||||
|
|
@ -67,7 +67,7 @@ static void print_version () {
|
|||
exit (EXIT_SUCCESS);
|
||||
}
|
||||
|
||||
static void usage () {
|
||||
static void usage (void) {
|
||||
printf (ARD_PROG_NAME " - DBus Audio Reservation Utility.\n");
|
||||
printf ("Usage: " ARD_PROG_NAME " [ OPTIONS ] <Audio-Device-ID>\n");
|
||||
printf ("Options:\n\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue