diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-09 21:22:05 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:44:20 -0600 |
commit | c281872eec33c92db0565afdbfdee91558e5d8e0 (patch) | |
tree | 26d305fb2417dde66d3d155bd7ca9db6190bd7cd /gdb/windows-tdep.c | |
parent | 5b64bf744c04f550a9d15b49a8cb0245904afb13 (diff) | |
download | binutils-gdb-c281872eec33c92db0565afdbfdee91558e5d8e0.tar.gz |
Constify display_tib
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* windows-tdep.c (display_tib): Constify.
Diffstat (limited to 'gdb/windows-tdep.c')
-rw-r--r-- | gdb/windows-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-tdep.c b/gdb/windows-tdep.c index 197d7797d7f..49402d372a3 100644 --- a/gdb/windows-tdep.c +++ b/gdb/windows-tdep.c @@ -361,7 +361,7 @@ display_one_tib (ptid_t ptid) /* Display thread information block of the current thread. */ static void -display_tib (char * args, int from_tty) +display_tib (const char * args, int from_tty) { if (!ptid_equal (inferior_ptid, null_ptid)) display_one_tib (inferior_ptid); |