]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix type typo on Solaris
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 2 Dec 2016 06:45:07 +0000 (22:45 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 2 Dec 2016 06:45:38 +0000 (22:45 -0800)
* src/sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
Fix type mismatch, caught by --enable-check-lisp-object-type.

src/sysdep.c

index 892e97626bd92fe9eb8653882df9b2fdc1f77aa3..257634292b13a5d4b50a4b1ed1e070474be9122e 100644 (file)
@@ -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);
     }