Skip to content

Commit

Permalink
Fix --va option (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthShad0w authored Aug 20, 2022
1 parent 3f53d79 commit aabe9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) {
rp.add_flag("--colors", g_colors_desired, "enable colors");
rp.add_flag("--thumb", g_opts.thumb,
"enable thumb mode when looking for ARM gadgets");
rp.add_flag("--va", g_opts.va,
rp.add_option("--va", g_opts.va,
"don't use the image base of the binary, but yours instead");
rp.add_flag("--allow-branches", g_opts.allow_branches,
"allow branches in a gadget");
Expand Down

0 comments on commit aabe9ae

Please sign in to comment.