From 26659d07fe749d1809fef0233801fc794417baa4 Mon Sep 17 00:00:00 2001 From: Phillip Whelan Date: Tue, 26 Sep 2023 12:19:43 -0300 Subject: [PATCH] config_format: yaml: fix indentation. Signed-off-by: Phillip Whelan --- src/config_format/flb_cf_yaml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config_format/flb_cf_yaml.c b/src/config_format/flb_cf_yaml.c index 96eb7fc11e8..77e3fbe008c 100644 --- a/src/config_format/flb_cf_yaml.c +++ b/src/config_format/flb_cf_yaml.c @@ -429,7 +429,7 @@ static int read_glob(struct flb_cf *conf, struct local_ctx *ctx, for (idx = 0; idx < glb.gl_pathc; idx++) { ret = read_config(conf, ctx, state->file, glb.gl_pathv[idx]); - if (ret < 0) { + if (ret < 0) { break; } }