projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6879f41
)
__compat_long_path_size(): have proto and defn agree on return type
author
sof@galois.com
<unknown>
Wed, 14 Jun 2006 16:46:50 +0000
(16:46 +0000)
committer
sof@galois.com
<unknown>
Wed, 14 Jun 2006 16:46:50 +0000
(16:46 +0000)
compat/cbits/directory.c
patch
|
blob
|
history
diff --git
a/compat/cbits/directory.c
b/compat/cbits/directory.c
index
79d6cd4
..
456f612
100644
(file)
--- a/
compat/cbits/directory.c
+++ b/
compat/cbits/directory.c
@@
-21,9
+21,9
@@
* (PATH_MAX is not defined on systems with unlimited path length,
* e.g. the Hurd).
*/
-INLINE HsInt __compat_long_path_size() { return PATH_MAX; }
+INLINE int __compat_long_path_size() { return PATH_MAX; }
#else
-INLINE HsInt __compat_long_path_size() { return 4096; }
+INLINE int __compat_long_path_size() { return 4096; }
#endif
#if defined(mingw32_HOST_OS)