diff options
-rw-r--r-- | src/head.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/head.c b/src/head.c index ad718aa1e..464c678ce 100644 --- a/src/head.c +++ b/src/head.c @@ -583,7 +583,7 @@ free_lbuffers: while (first) { tmp = first->next; - free ((char *) first); + free (first); first = tmp; } return errors; |