From 219d20e80c52070c28e183ad466687b4c3c1b736 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 18 Oct 2024 13:48:45 +0300 Subject: [PATCH] Added missing semicolon --- include/re_conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/re_conf.h b/include/re_conf.h index 55cab15c5..f702bba7f 100644 --- a/include/re_conf.h +++ b/include/re_conf.h @@ -16,7 +16,7 @@ int conf_get_str(const struct conf *conf, const char *name, char *str, size_t size); int conf_get_u32(const struct conf *conf, const char *name, uint32_t *num); int conf_get_i32(const struct conf *conf, const char *name, int32_t *num); -int conf_get_float(const struct conf *conf, const char *name, double *num) +int conf_get_float(const struct conf *conf, const char *name, double *num); int conf_get_bool(const struct conf *conf, const char *name, bool *val); int conf_apply(const struct conf *conf, const char *name, conf_h *ch, void *arg);