From 71d63c472167d864c04d5b8f35e802383922a7a5 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 29 Feb 2016 07:42:54 -0800 Subject: [PATCH] * src/process.c (Fdelete_process): Simplify cast. --- src/process.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/process.c b/src/process.c index d83e2d2c51f..f40e8e53a24 100644 --- a/src/process.c +++ b/src/process.c @@ -858,8 +858,7 @@ nil, indicating the current buffer's process. */) completion, and then free the request. */ if (! inhibit_sentinels) { - gai_suspend ((const struct gaicb * const*)&p->dns_request, - 1, NULL); + gai_suspend ((struct gaicb const **) &p->dns_request, 1, NULL); free_dns_request (process); } } -- 2.39.5