diff options
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index a729a22..f80c292 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -681,7 +681,7 @@ do_include_common (pfile, type) _cpp_execute_include (pfile, fname, angle_brackets, type); } - free ((PTR) fname); + free ((void *) fname); } static void @@ -1320,7 +1320,7 @@ do_pragma_dependency (pfile) } } - free ((PTR) fname); + free ((void *) fname); } /* Get a token but skip padding. */ |