deps: mountutils: Missing TEXT macro

This commit is contained in:
Tom Dewey 2024-08-09 16:07:35 +01:00 committed by Tom Dewey
parent 15b162b824
commit 4abfe88c6e

View file

@ -407,7 +407,7 @@ MOUNTUTILS_RESULT EjectDriveLetter(TCHAR driveLetter) {
BOOL IsDriveEjectable(TCHAR driveLetter) {
TCHAR devicePath[8];
swprintf_s(devicePath, 8, "%c:\\", driveLetter);
swprintf_s(devicePath, 8, TEXT("%c:\\"), driveLetter);
MountUtilsLog("Checking whether drive is ejectable: "
+ std::string(1, driveLetter));