diff options
Diffstat (limited to 'gcc/java/check-init.c')
-rw-r--r-- | gcc/java/check-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/check-init.c b/gcc/java/check-init.c index e022376..6495a78 100644 --- a/gcc/java/check-init.c +++ b/gcc/java/check-init.c @@ -108,7 +108,7 @@ static tree get_variable_decl PARAMS ((tree)); static void final_assign_error PARAMS ((tree)); static void check_final_reassigned PARAMS ((tree, words)); -#define ALLOC_WORDS(NUM) ((word*) xmalloc ((NUM) * sizeof (word))) +#define ALLOC_WORDS(NUM) (xmalloc ((NUM) * sizeof (word))) #define FREE_WORDS(PTR) (free (PTR)) /* DECLARE_BUFFERS is used to allocate NUMBUFFER bit sets, each of |