Fix warning about unused variables (#5898)

This commit is contained in:
Alexandre Almeida
2026-05-30 03:47:35 -03:00
committed by GitHub
parent 7b96144716
commit 7c284cc5bc

View File

@@ -2277,10 +2277,11 @@ int FileMove(const char *srcPath, const char *dstPath)
int FileTextReplace(const char *fileName, const char *search, const char *replacement)
{
int result = 0;
#if SUPPORT_MODULE_RTEXT
char *fileText = NULL;
char *fileTextUpdated = { 0 };
#if SUPPORT_MODULE_RTEXT
if (FileExists(fileName))
{
fileText = LoadFileText(fileName);