aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2016-12-01 22:45:07 -0800
committerPaul Eggert2016-12-01 22:45:38 -0800
commitc662e2d4fc3678d1ea6eda16541b82bc88f0890b (patch)
treed5441b94eaf4293ead41035db4f22fb3b502ff13 /src
parentf3fa5d7e229f88e6f83dc24757b33e9b17bf10ae (diff)
downloademacs-c662e2d4fc3678d1ea6eda16541b82bc88f0890b.tar.gz
emacs-c662e2d4fc3678d1ea6eda16541b82bc88f0890b.zip
Fix type typo on Solaris
* src/sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]: Fix type mismatch, caught by --enable-check-lisp-object-type.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
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)
3371 nread = 0; 3371 nread = 0;
3372 else 3372 else
3373 { 3373 {
3374 record_unwind_protect (close_file_unwind, fd); 3374 record_unwind_protect_int (close_file_unwind, fd);
3375 nread = emacs_read (fd, &pinfo, sizeof pinfo); 3375 nread = emacs_read (fd, &pinfo, sizeof pinfo);
3376 } 3376 }
3377 3377