diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-29 13:53:59 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-29 13:53:59 +0000 |
commit | fb35179aa55fc69f7e58d3364684246fd3b584ce (patch) | |
tree | 6e3201f8c8d3d502dd57d16041c0f18d17a276f9 /libgfortran/runtime/string.c | |
parent | 908cb59d263cca413d6a47836cee043d3b3b9ece (diff) | |
download | gcc-fb35179aa55fc69f7e58d3364684246fd3b584ce.tar.gz |
* runtime/string.c (find_option): Change 3rd argument to
const st_option *.
* libgfortran.h (find_option): Likewise.
* runtime/environ.c (rounding, precision, signal_choices): Constify.
(init_choice, show_choice): Change 2nd argument to const choice *.
* io/open.c (access_opt, action_opt, blank_opt, delim_opt, form_opt,
position_opt, status_opt, pad_opt): Constify.
* io/transfer.c (advance_opt): Likewise.
* io/inquire.c (undefined): Likewise.
* io/close.c (status_opt): Likewise.
* io/format.c (posint_required, period_required, nonneg_required,
unexpected_element, unexpected_end, bad_string, bad_hollerith,
reversion_error): Likewise.
* io/unix.c (yes, no, unknown): Change from const char *
into const char [].
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104773 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/runtime/string.c')
-rw-r--r-- | libgfortran/runtime/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/runtime/string.c b/libgfortran/runtime/string.c index 5284b2fc8a9..d7963b7498b 100644 --- a/libgfortran/runtime/string.c +++ b/libgfortran/runtime/string.c @@ -104,7 +104,7 @@ cf_strcpy (char *dest, int dest_len, const char *src) if no default is provided. */ int -find_option (const char *s1, int s1_len, st_option * opts, +find_option (const char *s1, int s1_len, const st_option * opts, const char *error_message) { for (; opts->name; opts++) |