[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master cbd536d: Fix compilation of process.c
From: |
Robert Pluim |
Subject: |
[Emacs-diffs] master cbd536d: Fix compilation of process.c |
Date: |
Fri, 23 Aug 2019 08:27:27 -0400 (EDT) |
branch: master
commit cbd536d6a9cc2d3bd7b1ac00c4b658403b5e91e6
Author: Robert Pluim <address@hidden>
Commit: Robert Pluim <address@hidden>
Fix compilation of process.c
* src/process.c (network_lookup_address_info_1): [!HAVE_GAI_STRERROR]:
Use make_fixnum instead of make_number. (Bug#37158).
---
src/process.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/process.c b/src/process.c
index c3cc78a..856c9c4 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4596,7 +4596,7 @@ network_lookup_address_info_1 (Lisp_Object host, const
char *service,
#else
AUTO_STRING (format, "%s/%s getaddrinfo error %d");
msg = CALLN (Fformat, format, host, build_string (service),
- make_number (ret));
+ make_fixnum (ret));
#endif
}
return msg;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master cbd536d: Fix compilation of process.c,
Robert Pluim <=