Initialze a stack variable with NULL to unbreak buildworld with -Wall.

I don't know about anyone else, but the compiler was always aborting
on this stupid warning, and has been doing so for weeks.
This commit is contained in:
Daniel Eischen 2002-01-09 17:36:53 +00:00
parent a9f5209e39
commit 8da986febb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89162

View File

@ -921,7 +921,7 @@ fprintlog(f, flags, msg)
struct iovec *v;
struct addrinfo *r;
int i, l, lsent = 0;
char line[MAXLINE + 1], repbuf[80], greetings[200], *wmsg;
char line[MAXLINE + 1], repbuf[80], greetings[200], *wmsg = NULL;
const char *msgret;
v = iov;