From daad55a5fee70e2e8743ead5a95c20faead82727 Mon Sep 17 00:00:00 2001 From: rth Date: Sat, 16 Sep 2000 17:48:10 +0000 Subject: * cppiles.c (purge_cache): Use PTR not caddr_t. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36458 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cppfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/cppfiles.c') 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; -- cgit v1.2.3