Skip to content

Commit

Permalink
3DS: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
endrift committed May 29, 2023
1 parent d432ec3 commit 46c4412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feature/updater.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ bool mUpdateLoad(const struct mCoreConfig* config, const char* prefix, struct mU
snprintf(key, sizeof(key), "%s.path", prefix);
update->path = mCoreConfigGetValue(config, key);
snprintf(key, sizeof(key), "%s.size", prefix);
uint32_t size = 0;
unsigned size = 0;
mCoreConfigGetUIntValue(config, key, &size);
if (!update->path && !size) {
return false;
Expand Down

0 comments on commit 46c4412

Please sign in to comment.