Merge branch 'master' of github.com:justinian/jsix

This commit is contained in:
Justin C. Miller
2021-01-06 23:30:53 -08:00
2 changed files with 8 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ file::load(uefi::memory_type mem_type)
m_file->read(&size, data),
L"Could not read from file");
return { .data = data, .size = size };
return { .size = size, .data = data };
}
file