mat_flush is not published in any header, nor is called anywhere outside of capi.cpp, thus mark the method as static, (#1245)

This commit is contained in:
Matthew Koscumb 2024-02-02 12:56:47 -08:00 коммит произвёл GitHub
Родитель 7491e96066
Коммит 8e3697de26
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -337,7 +337,7 @@ evt_status_t mat_flushAndTeardown(evt_context_t *ctx)
return STATUS_SUCCESS;
}
evt_status_t mat_flush(evt_context_t *ctx)
static evt_status_t mat_flush(evt_context_t *ctx)
{
VERIFY_CLIENT_HANDLE(client, ctx);
const auto result = static_cast<evt_status_t>(client->logmanager->Flush());