diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-07-12 04:40:33 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2005-07-12 14:40:33 +1000 |
commit | 6c5844d2c679c2b993e9b9ee3dc92d0126cfd742 (patch) | |
tree | 907bffd46abad8c308ce8c1220033e9d026dbfc6 /libiberty | |
parent | 12548280a2afc5baa51ce7cd24c60fe841daa62e (diff) | |
download | gcc-6c5844d2c679c2b993e9b9ee3dc92d0126cfd742.zip gcc-6c5844d2c679c2b993e9b9ee3dc92d0126cfd742.tar.gz gcc-6c5844d2c679c2b993e9b9ee3dc92d0126cfd742.tar.bz2 |
pexecute.c (pexecute): Cast string litrals to char *.
* pexecute.c (pexecute): Cast string litrals to char *.
* regex.c (re_comp): Cast a call to gettext() to char *.
From-SVN: r101911
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/pexecute.c | 4 | ||||
-rw-r--r-- | libiberty/regex.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index dc55ff2..bb11111 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2005-07-12 Ben Elliston <bje@au.ibm.com> + + * pexecute.c (pexecute): Cast string litrals to char *. + * regex.c (re_comp): Cast a call to gettext() to char *. + 2005-07-07 Kelley Cook <kcook@gcc.gnu.org> * config.table: Delete file. Move former contents into ... diff --git a/libiberty/pexecute.c b/libiberty/pexecute.c index 60a280b..cce6e30 100644 --- a/libiberty/pexecute.c +++ b/libiberty/pexecute.c @@ -47,7 +47,7 @@ pexecute (const char *program, char * const *argv, const char *pname, { if (pex != NULL) { - *errmsg_fmt = "pexecute already in progress"; + *errmsg_fmt = (char *) "pexecute already in progress"; *errmsg_arg = NULL; return -1; } @@ -58,7 +58,7 @@ pexecute (const char *program, char * const *argv, const char *pname, { if (pex == NULL) { - *errmsg_fmt = "pexecute not in progress"; + *errmsg_fmt = (char *) "pexecute not in progress"; *errmsg_arg = NULL; return -1; } diff --git a/libiberty/regex.c b/libiberty/regex.c index 9d3e532..b7be99d 100644 --- a/libiberty/regex.c +++ b/libiberty/regex.c @@ -7814,7 +7814,7 @@ re_comp (const char *s) if (!s) { if (!re_comp_buf.buffer) - return gettext ("No previous regular expression"); + return (char *) gettext ("No previous regular expression"); return 0; } |