From: Lars Ingebrigtsen Date: Tue, 2 Feb 2016 02:17:53 +0000 (+0100) Subject: Build fix for --enable-check-lisp-object-type X-Git-Tag: emacs-26.0.90~2520^2~34 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eb597d40950d0b8f126641bf458af28fcab150d5;p=emacs.git Build fix for --enable-check-lisp-object-type * process.c (check_for_dns): Type fix reported by YAMAMOTO Mitsuharu. --- 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) /* Sanity check. */ if (! p->dns_requests) - return 1; + return Qnil; ret = gai_error (p->dns_requests[0]); if (ret == EAI_INPROGRESS)