From: Paul Eggert Date: Mon, 29 Feb 2016 15:42:54 +0000 (-0800) Subject: * src/process.c (Fdelete_process): Simplify cast. X-Git-Tag: emacs-26.0.90~2426 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=71d63c472167d864c04d5b8f35e802383922a7a5;p=emacs.git * src/process.c (Fdelete_process): Simplify cast. --- 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); } }