diff options
| author | Paul Eggert | 2016-12-01 22:45:07 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-12-01 22:45:38 -0800 |
| commit | c662e2d4fc3678d1ea6eda16541b82bc88f0890b (patch) | |
| tree | d5441b94eaf4293ead41035db4f22fb3b502ff13 | |
| parent | f3fa5d7e229f88e6f83dc24757b33e9b17bf10ae (diff) | |
| download | emacs-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.
| -rw-r--r-- | src/sysdep.c | 2 |
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 | ||