From 61247e3595d0684b3b311b87d54c2e8c74ecd5be Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Fri, 10 Jun 2011 14:51:53 +0100 Subject: [PATCH] tail: gcc whines --- tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tail.c b/tail.c index 906e424..4c3a0e7 100644 --- a/tail.c +++ b/tail.c @@ -58,7 +58,7 @@ taketail(FILE *fp, const char *str, long n) { char **ring; long i, j; - size_t *size; + size_t *size = NULL; if(!(ring = calloc(n, sizeof *ring)) || !(size = calloc(n, sizeof *size))) eprintf("calloc:");