From cc6e72699cc2b727a4891ca3b06fbdf22afa46d2 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 12 May 1995 06:52:50 +0000 Subject: [PATCH] (init_system_name): Clean up signedness mismatch. --- src/sysdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2