Renamed XFileSystemAttributeInfo to X_FILE_FS_ATTRIBUTE_INFORMATION.

This commit is contained in:
gibbed
2015-05-24 03:44:12 -05:00
parent cbbaae7867
commit de844a3db9
11 changed files with 13 additions and 13 deletions

View File

@@ -626,7 +626,7 @@ SHIM_CALL NtQueryVolumeInformationFile_shim(PPCContext* ppc_state,
break;
}
case 5: { // FileFsAttributeInformation
auto fs_attribute_info = (XFileSystemAttributeInfo*)calloc(length, 1);
auto fs_attribute_info = (X_FILE_FS_ATTRIBUTE_INFORMATION*)calloc(length, 1);
result = file->QueryFileSystemAttributes(fs_attribute_info, length);
if (XSUCCEEDED(result)) {
fs_attribute_info->Write(SHIM_MEM_BASE, fs_info_ptr);