From: Paul Eggert Date: Fri, 2 Dec 2016 06:45:07 +0000 (-0800) Subject: Fix type typo on Solaris X-Git-Tag: emacs-26.0.90~1234 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c662e2d4fc3678d1ea6eda16541b82bc88f0890b;p=emacs.git Fix type typo on Solaris * src/sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]: Fix type mismatch, caught by --enable-check-lisp-object-type. --- diff --git a/src/sysdep.c b/src/sysdep.c index 892e97626bd..257634292b1 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); }