diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-02-19 12:03:08 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-02-19 12:03:08 +0000 |
commit | cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053 (patch) | |
tree | c008de58dba89ed07c357a54f7e2d9182482d564 /gas/app.c | |
parent | f4583255d5a16b76c249e3c28ab9c8dd9e7a110e (diff) | |
download | binutils-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.zip binutils-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.tar.gz binutils-cd0bbe6ef9ca3d3db38a3a0f1ca993bbdc952053.tar.bz2 |
Add const to various variables in the gas sources.
* symbols.c (decode_local_label_name): Make type a const char *.
* listing.c (print_source): Make type of p const char *.
(print_line): Make type of string const char *.
(buffer_line): Return const char *.
(title): Make type const char *.
(subtitle): Likewise.
(listing_listing): Make type of p const char *.
* messages.c (as_internal_value_out_of_range): Make type of prefix
const char *.
* stabs.c (s_stab_generic): make type of stab_secname, stabstr_secname
and string const char *.
* read.c (_bfd_rel): Make type of name const char *.
* app.c (out_string): Change type to const char *.
(struct app_save::out_string): Likewise.
Diffstat (limited to 'gas/app.c')
-rw-r--r-- | gas/app.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -211,7 +211,7 @@ do_scrub_begin (int m68k_mri ATTRIBUTE_UNUSED) /* Saved state of the scrubber. */ static int state; static int old_state; -static char *out_string; +static const char *out_string; static char out_buf[20]; static int add_newlines; static char *saved_input; @@ -229,7 +229,7 @@ struct app_save { int state; int old_state; - char * out_string; + const char * out_string; char out_buf[sizeof (out_buf)]; int add_newlines; char * saved_input; |