From 648e5cca25cfb05b1b24521d94e2af201a33b9a9 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sat, 8 Feb 2025 11:11:31 +0000 Subject: [PATCH] Replace a missed _tcslen() with strlen() --- source/Debugger/Debugger_Symbols.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Debugger/Debugger_Symbols.cpp b/source/Debugger/Debugger_Symbols.cpp index 08b6c50f..bddabcd6 100644 --- a/source/Debugger/Debugger_Symbols.cpp +++ b/source/Debugger/Debugger_Symbols.cpp @@ -790,7 +790,7 @@ Update_t CmdSymbolsLoad (int nArgs) for ( int iLine = 0; iLine < nLine; iLine++ ) { script.GetLine( iLine, g_pConsoleInput, CONSOLE_WIDTH-2 ); - g_nConsoleInputChars = _tcslen( g_pConsoleInput ); + g_nConsoleInputChars = strlen( g_pConsoleInput ); bUpdateDisplay |= DebuggerProcessCommand( false ); } }