From d0082642d8e6acf025a73ef663dcf6f289cf65b5 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sat, 14 Feb 2009 14:13:00 +0100 Subject: [PATCH] tail plugin: Fix a format string for a size_t. Probably a result of f50ada19. --- src/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tail.c b/src/tail.c index 3a98c60f..02afd791 100644 --- a/src/tail.c +++ b/src/tail.c @@ -314,7 +314,7 @@ static int ctail_read (void) status = tail_match_read (tail_match_list[i]); if (status != 0) { - ERROR ("tail plugin: tail_match_read[%i] failed.", i); + ERROR ("tail plugin: tail_match_read[%zu] failed.", i); } else { -- 2.11.0