mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
package2: Correct -> to . in load_package2 (#34)
header is a local on the stack, so this should just be regular member accessing
This commit is contained in:
parent
06c8b7a764
commit
7ab0acf656
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ void load_package2(void) {
|
|||
uint32_t package2_mkey_rev = decrypt_and_validate_header(&header);
|
||||
|
||||
/* Load Package2 Sections. */
|
||||
load_package2_sections(&header->metadata, package2_mkey_rev);
|
||||
load_package2_sections(&header.metadata, package2_mkey_rev);
|
||||
|
||||
/* Clean up cache. */
|
||||
flush_dcache_all();
|
||||
|
|
Loading…
Reference in a new issue