aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-02-02 03:17:53 +0100
committerLars Ingebrigtsen2016-02-02 03:17:53 +0100
commiteb597d40950d0b8f126641bf458af28fcab150d5 (patch)
tree2037fca3db628e943293b13541e2fe8a820cebb0 /src
parent3955d6c692d8ef5a0873b42556d8284263ca5794 (diff)
downloademacs-eb597d40950d0b8f126641bf458af28fcab150d5.tar.gz
emacs-eb597d40950d0b8f126641bf458af28fcab150d5.zip
Build fix for --enable-check-lisp-object-type
* process.c (check_for_dns): Type fix reported by YAMAMOTO Mitsuharu.
Diffstat (limited to 'src')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 762778e5293..e4dd123574e 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4598,7 +4598,7 @@ check_for_dns (Lisp_Object proc)
4598 4598
4599 /* Sanity check. */ 4599 /* Sanity check. */
4600 if (! p->dns_requests) 4600 if (! p->dns_requests)
4601 return 1; 4601 return Qnil;
4602 4602
4603 ret = gai_error (p->dns_requests[0]); 4603 ret = gai_error (p->dns_requests[0]);
4604 if (ret == EAI_INPROGRESS) 4604 if (ret == EAI_INPROGRESS)