Build fixes for gcc 4.0 with -Werror, from Tito.

This commit is contained in:
Rob Landley
2006-09-11 01:34:21 +00:00
parent 69674941dd
commit 49ea46667f
6 changed files with 17 additions and 129 deletions

View File

@ -258,7 +258,7 @@ void circ_message(const char *msg);
static void message(char *fmt, ...) __attribute__ ((format(printf, 1, 2)));
static void message(char *fmt, ...)
{
int fd;
int fd = -1;
struct flock fl;
va_list arguments;