Mute some warnings on uninitialized variables.

The code does the right thing, but the compiler is unable to figure it
out. All paths that use that variable use the same invariant.
This commit is contained in:
Ed Schouten 2010-01-02 10:14:35 +00:00
parent d93708c3e6
commit 01cc221b4c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201385
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ int
main(int argc, char *argv[])
{
char hostname[MAXHOSTNAMELEN];
struct passwd *pwd;
struct passwd *pwd = NULL; /* Keep compiler happy. */
int o, pam_err;
uid_t uid;

View File

@ -496,8 +496,8 @@ printaddr(int af, struct sockaddr_storage *ss)
{
char addrstr[INET6_ADDRSTRLEN] = { '\0', '\0' };
struct sockaddr_un *sun;
void *addr;
int off, port;
void *addr = NULL; /* Keep compiler happy. */
int off, port = 0;
switch (af) {
case AF_INET: