Skip to content

Commit

Permalink
Fix off-by-one error
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaposfos13 committed Jan 12, 2025
1 parent 439db02 commit 39c87f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/linker.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Linker;
struct EntryParams {
int argc;
u32 padding;
const char* argv[32];
const char* argv[33];
VAddr entry_addr;
};

Expand Down

0 comments on commit 39c87f4

Please sign in to comment.