emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c662e2d: Fix type typo on Solaris


From: Paul Eggert
Subject: [Emacs-diffs] master c662e2d: Fix type typo on Solaris
Date: Fri, 2 Dec 2016 06:45:43 +0000 (UTC)

branch: master
commit c662e2d4fc3678d1ea6eda16541b82bc88f0890b
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix type typo on Solaris
    
    * src/sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
    Fix type mismatch, caught by --enable-check-lisp-object-type.
---
 src/sysdep.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sysdep.c b/src/sysdep.c
index 892e976..2576342 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3371,7 +3371,7 @@ system_process_attributes (Lisp_Object pid)
     nread = 0;
   else
     {
-      record_unwind_protect (close_file_unwind, fd);
+      record_unwind_protect_int (close_file_unwind, fd);
       nread = emacs_read (fd, &pinfo, sizeof pinfo);
     }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]