From: Karl Heuer Date: Fri, 12 May 1995 06:52:50 +0000 (+0000) Subject: (init_system_name): Clean up signedness mismatch. X-Git-Tag: emacs-19.34~4058 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cc6e72699cc2b727a4891ca3b06fbdf22afa46d2;p=emacs.git (init_system_name): Clean up signedness mismatch. --- diff --git a/src/sysdep.c b/src/sysdep.c index c971cb32242..742582d5382 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -2117,7 +2117,7 @@ init_system_name () uname (&uts); Vsystem_name = build_string (uts.nodename); #else /* HAVE_GETHOSTNAME */ - int hostname_size = 256; + unsigned int hostname_size = 256; char *hostname = (char *) alloca (hostname_size); /* Try to get the host name; if the buffer is too short, try