From f87ccc533429b322037ec9af3ede8a63f40f2dff Mon Sep 17 00:00:00 2001 From: NikitaUnisikhin Date: Sun, 28 Jan 2024 18:08:24 +0000 Subject: [PATCH] fix fmt --- sources/config_reader.c | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/sources/config_reader.c b/sources/config_reader.c index 879ec7f3c..30c9b166d 100644 --- a/sources/config_reader.c +++ b/sources/config_reader.c @@ -324,7 +324,8 @@ static od_keyword_t od_role_keywords[] = { }; static inline int od_config_reader_watchdog(od_config_reader_t *reader, - od_storage_watchdog_t *watchdog, char* storage_name, + od_storage_watchdog_t *watchdog, + char *storage_name, od_extention_t *extentions); static int od_config_reader_open(od_config_reader_t *reader, char *config_file) @@ -891,9 +892,9 @@ static int od_config_reader_storage(od_config_reader_t *reader, if (storage->watchdog == NULL) { return NOT_OK_RESPONSE; } - if (od_config_reader_watchdog(reader, storage->watchdog, storage->name, - extentions) == - NOT_OK_RESPONSE) + if (od_config_reader_watchdog( + reader, storage->watchdog, storage->name, + extentions) == NOT_OK_RESPONSE) return NOT_OK_RESPONSE; continue; default: @@ -1728,7 +1729,8 @@ static int od_config_reader_route(od_config_reader_t *reader, char *db_name, } static inline int od_config_reader_watchdog(od_config_reader_t *reader, - od_storage_watchdog_t *watchdog, char* storage_name, + od_storage_watchdog_t *watchdog, + char *storage_name, od_extention_t *extentions) { char *watchdog_prefix = "watchdog_"; @@ -1737,17 +1739,19 @@ static inline int od_config_reader_watchdog(od_config_reader_t *reader, char route_usr[watchdog_prefix_len + storage_name_len + 1]; char route_db[watchdog_prefix_len + storage_name_len + 1]; - snprintf(route_usr, sizeof route_usr, "%s%s", watchdog_prefix, storage_name); - snprintf(route_db, sizeof route_db, "%s%s", watchdog_prefix, storage_name); + snprintf(route_usr, sizeof route_usr, "%s%s", watchdog_prefix, + storage_name); + snprintf(route_db, sizeof route_db, "%s%s", watchdog_prefix, + storage_name); watchdog->route_usr = strdup(route_usr); if (watchdog->route_usr == NULL) return NOT_OK_RESPONSE; - + watchdog->route_db = strdup(route_db); if (watchdog->route_db == NULL) return NOT_OK_RESPONSE; - + int user_name_len = 0; user_name_len = strlen(watchdog->route_usr);