aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-incpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-incpath.c')
-rw-r--r--gcc/c-incpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-incpath.c b/gcc/c-incpath.c
index efcd19b..6ec42cc 100644
--- a/gcc/c-incpath.c
+++ b/gcc/c-incpath.c
@@ -306,7 +306,7 @@ add_path (char *path, int chain, int cxx_aware)
{
struct cpp_path *p;
- p = (struct cpp_path *) xmalloc (sizeof (struct cpp_path));
+ p = xmalloc (sizeof (struct cpp_path));
p->next = NULL;
p->name = path;
if (chain == SYSTEM || chain == AFTER)