nancy.liao
2025-05-23 8553a8d63f97cfa8d64b5b2260e81f8c896a8398
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;