- Timestamp:
- Aug 13, 2024 10:47:26 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/NvramStoreImpl.cpp
r105658 r105659 1061 1061 if (RT_FAILURE(vrc)) 1062 1062 { 1063 LogRel(("Failed to delete existing NVRAM store '%s': %Rrc\n", vrc));1063 LogRel(("Failed to delete existing NVRAM store '%s': %Rrc\n", pszPath, vrc)); 1064 1064 return vrc; 1065 1065 } … … 1144 1144 int vrc2 = RTDirRemoveRecursive(pszPath, RTDIRRMREC_F_CONTENT_AND_DIR); 1145 1145 if (RT_FAILURE(vrc2)) 1146 LogRel(("Cleaning up NVRAM store '%s' failed with %Rrc (after creation failed with %Rrc)\n", vrc2, vrc));1146 LogRel(("Cleaning up NVRAM store '%s' failed with %Rrc (after creation failed with %Rrc)\n", pszPath, vrc2, vrc)); 1147 1147 } 1148 1148 } … … 1264 1264 throw hrc; 1265 1265 1266 bool fSaveAsDir = fSaveAsDir =bstrValue == "1";1266 bool fSaveAsDir = bstrValue == "1"; 1267 1267 1268 1268 if (fSaveAsDir)
Note:
See TracChangeset
for help on using the changeset viewer.