nancy.liao
2025-05-28 78c4103171732369725487b5f0e43816e1ea1256
src/library/os/windows/os_win.cpp
@@ -35,7 +35,7 @@
   const DWORD dwSize = MAX_PATH;
   char szLogicalDrives[MAX_PATH] = {0};
   FUNCTION_RETURN return_value = FUNC_RET_NOT_AVAIL;
   FUNCTION_RETURN return_value;
   const DWORD dwResult = GetLogicalDriveStrings(dwSize, szLogicalDrives);
   if (dwResult > 0) {
@@ -75,7 +75,7 @@
      return_value = FUNC_RET_OK;
   } else {
      return_value = FUNC_RET_NOT_AVAIL;
      LOG_INFO("No fixed drive were detected");
      LOG_DEBUG("No fixed drive were detected");
   }
   return return_value;