mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 11:27:34 +00:00
(init_system_name): Clean up signedness mismatch.
This commit is contained in:
parent
043620f45e
commit
cc6e72699c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue