Convert static func naming to same style
Previously, some modules used BH_<Module> prefix in the names of static functions (some used just <Module> prefix). Now every static function should start from lowercase.
This commit is contained in:
@@ -13,7 +13,7 @@ typedef struct BH_Unit
|
||||
static BH_Unit *root = NULL;
|
||||
|
||||
|
||||
static void BH_UnitCleanup(void)
|
||||
static void cleanup(void)
|
||||
{
|
||||
BH_Unit *current;
|
||||
|
||||
@@ -75,6 +75,6 @@ int BH_UnitRun(void)
|
||||
current = current->next;
|
||||
}
|
||||
|
||||
BH_UnitCleanup();
|
||||
cleanup();
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user