1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-16 08:52:40 +01:00

Codechange: char* -> char *

This commit is contained in:
Rubidium
2025-05-04 08:25:17 +02:00
committed by rubidium42
parent 3f2b39e3f8
commit 5e3c7c4146
4 changed files with 5 additions and 5 deletions

View File

@@ -273,7 +273,7 @@ struct LanguagePackDeleter {
void operator()(LanguagePack *langpack)
{
/* LanguagePack is in fact reinterpreted char[], we need to reinterpret it back to free it properly. */
delete[] reinterpret_cast<char*>(langpack);
delete[] reinterpret_cast<char *>(langpack);
}
};