projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3fa5d7
)
Fix type typo on Solaris
author
Paul Eggert
<eggert@cs.ucla.edu>
Fri, 2 Dec 2016 06:45:07 +0000
(22:45 -0800)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index 892e97626bd92fe9eb8653882df9b2fdc1f77aa3..257634292b13a5d4b50a4b1ed1e070474be9122e 100644
(file)
--- 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);
}