diff options
author | Richard Henderson <rth@cygnus.com> | 2000-09-16 10:48:10 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-09-16 10:48:10 -0700 |
commit | 6f84c9bdaa1cb47ea42eead3da3bdbc992aec80b (patch) | |
tree | 9989a3c6ebf1cf99ee5eb29a8498d1dfce532a6d /gcc/cppfiles.c | |
parent | 4faefccb491381da461576326cd21b22157badc1 (diff) | |
download | gcc-6f84c9bdaa1cb47ea42eead3da3bdbc992aec80b.tar.gz |
* cppiles.c (purge_cache): Use PTR not caddr_t.
From-SVN: r36458
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 7f5c731c403..6b99b616e06 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -364,7 +364,7 @@ purge_cache (inc) if (inc->buffer) { if (inc->mapped) - munmap ((caddr_t) inc->buffer, inc->st.st_size); + munmap ((PTR) inc->buffer, inc->st.st_size); else free ((PTR) inc->buffer); inc->buffer = NULL; |