diff options
Diffstat (limited to 'gcc/f/lab.c')
-rw-r--r-- | gcc/f/lab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/f/lab.c b/gcc/f/lab.c index 8691897c21c..1d278748b21 100644 --- a/gcc/f/lab.c +++ b/gcc/f/lab.c @@ -141,7 +141,7 @@ ffelab_new (ffelabValue v) ffelab l; ++ffelab_num_news_; - l = (ffelab) malloc_new_ks (ffe_pool_any_unit (), "FFELAB label", sizeof (*l)); + l = malloc_new_ks (ffe_pool_any_unit (), "FFELAB label", sizeof (*l)); l->next = ffelab_list_; l->hook = FFECOM_labelNULL; l->value = v; |