fix invalid function prototyes

This commit is contained in:
Duncan Laurie 2005-05-11 05:56:47 +00:00
parent 081baa7e24
commit 6f9b34313e
3 changed files with 10 additions and 10 deletions

View File

@ -399,8 +399,8 @@ ipmi_get_session_info(struct ipmi_intf * intf,
void static void
printf_session_usage() printf_session_usage(void)
{ {
lprintf(LOG_NOTICE, "Session Commands: info <active | all | id 0xnnnnnnnn | handle 0xnn>"); lprintf(LOG_NOTICE, "Session Commands: info <active | all | id 0xnnnnnnnn | handle 0xnn>");
} }

View File

@ -1045,8 +1045,8 @@ suspendSelf(int bRestoreTty)
* *
* Send some useful documentation to the user * Send some useful documentation to the user
*/ */
void static void
printSolEscapeSequences() printSolEscapeSequences(void)
{ {
printf( printf(
"%c?\r\n\ "%c?\r\n\
@ -1528,8 +1528,8 @@ ipmi_sol_activate(struct ipmi_intf * intf)
/* /*
* print_sol_usage * print_sol_usage
*/ */
void static void
print_sol_usage() print_sol_usage(void)
{ {
lprintf(LOG_NOTICE, "SOL Commands: info [<channel number>]"); lprintf(LOG_NOTICE, "SOL Commands: info [<channel number>]");
lprintf(LOG_NOTICE, " set <parameter> <value> [channel]"); lprintf(LOG_NOTICE, " set <parameter> <value> [channel]");
@ -1542,8 +1542,8 @@ print_sol_usage()
/* /*
* print_sol_set_usage * print_sol_set_usage
*/ */
void static void
print_sol_set_usage() print_sol_set_usage(void)
{ {
lprintf(LOG_NOTICE, "\nSOL set parameters and values: \n"); lprintf(LOG_NOTICE, "\nSOL set parameters and values: \n");
lprintf(LOG_NOTICE, " set-in-progress set-complete | " lprintf(LOG_NOTICE, " set-in-progress set-complete | "

View File

@ -450,8 +450,8 @@ ipmi_user_test_password(
/* /*
* print_user_usage * print_user_usage
*/ */
void static void
print_user_usage() print_user_usage(void)
{ {
lprintf(LOG_NOTICE, "User Commands: summary [<channel number>]"); lprintf(LOG_NOTICE, "User Commands: summary [<channel number>]");
lprintf(LOG_NOTICE, " list [<channel number>]"); lprintf(LOG_NOTICE, " list [<channel number>]");