From eb597d40950d0b8f126641bf458af28fcab150d5 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 2 Feb 2016 03:17:53 +0100 Subject: [PATCH] Build fix for --enable-check-lisp-object-type * process.c (check_for_dns): Type fix reported by YAMAMOTO Mitsuharu. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5