From 6a1c62d8939368296f9b37a79aaebcf8ebbedb26 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 70a41bd5e0d..be36c9c7087 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; } }