constify tui/tui-io.c

gdb:

2015-03-20  Pedro Alves  <palves@redhat.com>

	* tui/tui-io.c (tui_expand_tabs): Make "s1" const.
This commit is contained in:
Pedro Alves 2015-03-09 11:58:20 +00:00 committed by Yao Qi
parent e28566f7d0
commit cd46431bbd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-03-20 Pedro Alves <palves@redhat.com>
* tui/tui-io.c (tui_expand_tabs): Make "s1" const.
2015-03-20 Pedro Alves <palves@redhat.com>
* xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.

View File

@ -692,7 +692,7 @@ tui_expand_tabs (const char *string, int col)
/* 2. Copy the original string while replacing TABs with spaces. */
for (s = string; s; )
{
char *s1 = strpbrk (s, "\t");
const char *s1 = strpbrk (s, "\t");
if (s1)
{
if (s1 > s)