diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-09-11 13:50:09 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-09-11 13:50:09 +0200 |
commit | 7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8 (patch) | |
tree | 29788f4bc2fbece7e866ecc2437567bd598e7d4c /gdb/breakpoint.c | |
parent | a56f73917a8f96892c6e7d9ae60fb5a0d0495da2 (diff) | |
download | gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.zip gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.gz gdb-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.bz2 |
gdb/breakpoint: fix typo in help message of "set breakpoint condition-evaluation"
The options for the "breakpoint condition-evaluation" setting are
"host", "target", and "auto". The help message mentions the option
"gdb" at one point instead of "host". Fix this typo. Also add a period.
gdb/ChangeLog:
2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* breakpoint.c: Fix typo in the help message of the
"set breakpoint condition-evaluation" command.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 670cba0..fff80ff 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -15914,7 +15914,7 @@ breakpoint conditions will be downloaded to the target (if the target\n\ supports such feature) and conditions will be evaluated on the target's side.\n\ If this is set to \"auto\" (default), this will be automatically set to\n\ \"target\" if it supports condition evaluation, otherwise it will\n\ -be set to \"gdb\""), +be set to \"host\"."), &set_condition_evaluation_mode, &show_condition_evaluation_mode, &breakpoint_set_cmdlist, |