From 21b7cd487ad2f4b5faf3bc0291d459dbb345cbed Mon Sep 17 00:00:00 2001 From: Bostjan Meglic Date: Mon, 3 Jul 2023 07:23:52 +0000 Subject: [PATCH] [DBI] Fix code indent --- lib/dbi/ogs-mongoc.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/dbi/ogs-mongoc.c b/lib/dbi/ogs-mongoc.c index 9b1ce7bc1..69fbdf61b 100644 --- a/lib/dbi/ogs-mongoc.c +++ b/lib/dbi/ogs-mongoc.c @@ -35,17 +35,17 @@ ogs_mongoc_mongoc_client_get_server_status (mongoc_client_t *client, /* IN */ bson_t *reply, /* OUT */ bson_error_t *error) /* OUT */ { - bson_t cmd = BSON_INITIALIZER; - bool ret = false; + bson_t cmd = BSON_INITIALIZER; + bool ret = false; - BSON_ASSERT (client); + BSON_ASSERT (client); - BSON_APPEND_INT32 (&cmd, "ping", 1); - ret = mongoc_client_command_simple ( - client, "admin", &cmd, read_prefs, reply, error); - bson_destroy (&cmd); + BSON_APPEND_INT32 (&cmd, "ping", 1); + ret = mongoc_client_command_simple ( + client, "admin", &cmd, read_prefs, reply, error); + bson_destroy (&cmd); - return ret; + return ret; } static char *masked_db_uri(const char *db_uri)