From 890f7fa7002e494fccafe5989e891fdfe54df46b Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 3 Sep 2022 14:51:45 +0200 Subject: [PATCH] Rename Mocha_DeinitLibrary to Mocha_DeInitLibrary to be consistent across libs --- include/mocha/mocha.h | 2 +- source/utils.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mocha/mocha.h b/include/mocha/mocha.h index d09b293..66b96f8 100644 --- a/include/mocha/mocha.h +++ b/include/mocha/mocha.h @@ -37,7 +37,7 @@ MochaUtilsStatus Mocha_InitLibrary(); * Deinitializes the mocha lib * @return */ -MochaUtilsStatus Mocha_DeinitLibrary(); +MochaUtilsStatus Mocha_DeInitLibrary(); /** * Retrieves the API Version of the running mocha. diff --git a/source/utils.cpp b/source/utils.cpp index 2b3d6c9..34b2fb1 100644 --- a/source/utils.cpp +++ b/source/utils.cpp @@ -82,7 +82,7 @@ MochaUtilsStatus Mocha_InitLibrary() { return MOCHA_RESULT_SUCCESS; } -MochaUtilsStatus Mocha_DeinitLibrary() { +MochaUtilsStatus Mocha_DeInitLibrary() { mochaInitDone = 0; mochaApiVersion = 0;