aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Eggert2016-02-29 07:42:54 -0800
committerPaul Eggert2016-02-29 07:43:19 -0800
commit71d63c472167d864c04d5b8f35e802383922a7a5 (patch)
tree55c1461d6f267f2003d174ad9f98660aaf016d1c /src/process.c
parentcad0bc70558f9c28c808711c5295dec9fc5ad6e5 (diff)
downloademacs-71d63c472167d864c04d5b8f35e802383922a7a5.tar.gz
emacs-71d63c472167d864c04d5b8f35e802383922a7a5.zip
* src/process.c (Fdelete_process): Simplify cast.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c3
1 files changed, 1 insertions, 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. */)
858 completion, and then free the request. */ 858 completion, and then free the request. */
859 if (! inhibit_sentinels) 859 if (! inhibit_sentinels)
860 { 860 {
861 gai_suspend ((const struct gaicb * const*)&p->dns_request, 861 gai_suspend ((struct gaicb const **) &p->dns_request, 1, NULL);
862 1, NULL);
863 free_dns_request (process); 862 free_dns_request (process);
864 } 863 }
865 } 864 }