diff options
author | Yao Qi <yao.qi@linaro.org> | 2016-08-31 14:28:27 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2016-08-31 14:28:27 +0100 |
commit | f99bd5f2c1e6b545a0a6cfb3b13f79deea84098e (patch) | |
tree | 79365c64621b60f31c264c700cb62e9ac7e8a5c9 /gdb | |
parent | 2e84f9c1b5770b803b739bcd157d7a457c22b56f (diff) | |
download | gdb-f99bd5f2c1e6b545a0a6cfb3b13f79deea84098e.zip gdb-f99bd5f2c1e6b545a0a6cfb3b13f79deea84098e.tar.gz gdb-f99bd5f2c1e6b545a0a6cfb3b13f79deea84098e.tar.bz2 |
Fix a typo in comment
This patch replaces "keep things single" with "keep things simple".
gdb:
2016-08-31 Yao Qi <yao.qi@linaro.org>
* record-full.c (record_full_insert_breakpoint): Fix typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/record-full.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 57ba33c..602a05a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-08-31 Yao Qi <yao.qi@linaro.org> + + * record-full.c (record_full_insert_breakpoint): Fix typo. + 2016-08-30 Andreas Arnez <arnez@linux.vnet.ibm.com> * thread.c (tp_array_compar): Insert missing parentheses. diff --git a/gdb/record-full.c b/gdb/record-full.c index 3777315..e4dd55b 100644 --- a/gdb/record-full.c +++ b/gdb/record-full.c @@ -1650,7 +1650,7 @@ record_full_insert_breakpoint (struct target_ops *ops, really need to install regular breakpoints in the inferior. However, we do have to insert software single-step breakpoints, in case the target can't hardware step. To keep - things single, we always insert. */ + things simple, we always insert. */ struct cleanup *old_cleanups; int ret; |