projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
521657a
)
Declare VALUE as int, not long int.
author
roland
<roland>
Tue, 25 Jul 1995 19:43:38 +0000
(19:43 +0000)
committer
roland
<roland>
Tue, 25 Jul 1995 19:43:38 +0000
(19:43 +0000)
sysdeps/mach/hurd/pathconf.c
patch
|
blob
|
history
diff --git
a/sysdeps/mach/hurd/pathconf.c
b/sysdeps/mach/hurd/pathconf.c
index
315ab1f
..
f7923ae
100644
(file)
--- a/
sysdeps/mach/hurd/pathconf.c
+++ b/
sysdeps/mach/hurd/pathconf.c
@@
-27,8
+27,8
@@
long int
__pathconf (const char *file, int name)
{
error_t err;
+ int value; /* RPC returns an `int', not a `long int'. */
file_t port = __file_name_lookup (file, 0, 0);
- long int value;
if (port == MACH_PORT_NULL)
return -1L;
err = __file_pathconf (port, name, &value);