mirror of https://github.com/pwndbg/pwndbg
sigreturn command: improve help string
Inform on the default address in `help sigreturn`
This commit is contained in:
parent
df8a9d4dc6
commit
6289b97122
|
@ -41,7 +41,7 @@ SIGRETURN_CORE_REGISTER: Dict[str, Set[str]] = {
|
|||
parser = argparse.ArgumentParser(description="Display the SigreturnFrame at the specific address")
|
||||
|
||||
parser.add_argument(
|
||||
"address", nargs="?", default=None, type=int, help="The address to read the frame from"
|
||||
"address", nargs="?", default=None, type=int, help="The address to read the frame from (default: $sp)"
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
|
|
Loading…
Reference in New Issue