Some more minor updates to better use some gcc attributes.

-Erik
This commit is contained in:
Erik Andersen
2000-04-06 08:06:36 +00:00
parent 7a4b719486
commit 93d6513d93
8 changed files with 38 additions and 25 deletions

2
init.c
View File

@ -135,6 +135,8 @@ static void delete_initAction(initAction * action);
/* Print a message to the specified device.
* Device may be bitwise-or'd from LOG | CONSOLE */
static void message(int device, char *fmt, ...)
__attribute__ ((format (printf, 2, 3)));
static void message(int device, char *fmt, ...)
{
va_list arguments;