aboutsummaryrefslogtreecommitdiff
path: root/gdb/common
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2014-12-02 17:19:11 -0500
committerSimon Marchi <simon.marchi@ericsson.com>2014-12-02 17:22:07 -0500
commit5da3ffc99d0ec7d0770b4fcf8830ffe05d39b1b8 (patch)
tree9e142a84ead42b6710e717027412e388a8a29c38 /gdb/common
parent162078c893bb9614d4bf5e0d60ad567fcaf8e2bd (diff)
downloadfsf-binutils-gdb-5da3ffc99d0ec7d0770b4fcf8830ffe05d39b1b8.zip
fsf-binutils-gdb-5da3ffc99d0ec7d0770b4fcf8830ffe05d39b1b8.tar.gz
fsf-binutils-gdb-5da3ffc99d0ec7d0770b4fcf8830ffe05d39b1b8.tar.bz2
Fix comment typo
ChangeLog: * common/cleanups.c (make_cleanup_dtor): Fix comment typo.
Diffstat (limited to 'gdb/common')
-rw-r--r--gdb/common/cleanups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/common/cleanups.c b/gdb/common/cleanups.c
index 49b643b..80271fd 100644
--- a/gdb/common/cleanups.c
+++ b/gdb/common/cleanups.c
@@ -119,7 +119,7 @@ make_cleanup (make_cleanup_ftype *function, void *arg)
return make_my_cleanup (&cleanup_chain, function, arg);
}
-/* Same as make_cleanup except also includes TDOR, a destructor to free ARG.
+/* Same as make_cleanup except also includes DTOR, a destructor to free ARG.
DTOR is invoked when the cleanup is performed or when it is discarded. */
struct cleanup *