https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c2c4d853c2bd31a6abf7b5dc7b54814bae12a712
commit c2c4d853c2bd31a6abf7b5dc7b54814bae12a712 Author: Timo Kreuzer <timo.kreu...@reactos.org> AuthorDate: Wed Dec 4 08:12:43 2024 +0200 Commit: Timo Kreuzer <timo.kreu...@reactos.org> CommitDate: Sun Jan 19 09:02:58 2025 +0200 [EXPLORER-OLD] Fix build when _DEBUG is defined --- modules/rosapps/applications/explorer-old/shell/fatfs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/rosapps/applications/explorer-old/shell/fatfs.cpp b/modules/rosapps/applications/explorer-old/shell/fatfs.cpp index 5cd237280bf..fbfb3e832be 100644 --- a/modules/rosapps/applications/explorer-old/shell/fatfs.cpp +++ b/modules/rosapps/applications/explorer-old/shell/fatfs.cpp @@ -141,7 +141,7 @@ void FATDirectory::read_directory(int scan_flags) s = (const char*)p->Ent->B; // no change of the pointer, just to avoid overung warnings in code checkers // read long file name - TCHAR lname[] = {s[1], s[3], s[5], s[7], s[9], s[14], s[16], s[18], s[20], s[22], s[24], s[28], s[30]}; + char lname[] = {s[1], s[3], s[5], s[7], s[9], s[14], s[16], s[18], s[20], s[22], s[24], s[28], s[30]}; long_name = String(lname, 13) + long_name; } @@ -397,7 +397,7 @@ bool FATDirectory::read_dir() } } - buf->dat[0] = 0; // Endekennzeichen f�r Rekurs setzen + buf->dat[0] = 0; // Endekennzeichen für Rekurs setzen } return true;