From 1a7050de376608268d11293d4e5faa3fb8516c5a Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Tue, 28 Aug 2007 19:04:19 +0200 Subject: [PATCH] exec plugin: Fixed a "control reaches end of non-void function" warning. Signed-off-by: Sebastian Harl Signed-off-by: Florian Forster --- src/exec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/exec.c b/src/exec.c index 21ac7c73..e416c8f0 100644 --- a/src/exec.c +++ b/src/exec.c @@ -256,6 +256,7 @@ static int parse_line (char *buffer) fields_num = strsplit (buffer, &fields[1], STATIC_ARRAY_SIZE(fields) - 1); handle_putval (stdout, fields, fields_num + 1); + return (0); } /* int parse_line */ static void *exec_read_one (void *arg) -- 2.11.0