1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-20 18:17:20 +00:00

Fix type typo on Solaris

* src/sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
Fix type mismatch, caught by --enable-check-lisp-object-type.
This commit is contained in:
Paul Eggert 2016-12-01 22:45:07 -08:00
parent f3fa5d7e22
commit c662e2d4fc

View 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);
}