aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/adaint.c
diff options
context:
space:
mode:
authorAaron W. LaFramboise <aaronavay62@aaronwl.com>2005-03-24 16:11:36 -0600
committerAaron W. LaFramboise <aaronwl@gcc.gnu.org>2005-03-24 16:11:36 -0600
commitaad9ff31d82b49dc0e61787af2efc884bec0693c (patch)
tree1c0ca92a00a04f98dac6c4919dd7c98357493daa /gcc/ada/adaint.c
parent0a19d49fccbc684474bbcfe0c95817a8a9716cda (diff)
downloadgcc-aad9ff31d82b49dc0e61787af2efc884bec0693c.zip
gcc-aad9ff31d82b49dc0e61787af2efc884bec0693c.tar.gz
gcc-aad9ff31d82b49dc0e61787af2efc884bec0693c.tar.bz2
* adaint.c (__gnat_portable_spawn): Adjust cast.
From-SVN: r97013
Diffstat (limited to 'gcc/ada/adaint.c')
-rw-r--r--gcc/ada/adaint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/adaint.c b/gcc/ada/adaint.c
index cbe96f4..fbb67af 100644
--- a/gcc/ada/adaint.c
+++ b/gcc/ada/adaint.c
@@ -1579,7 +1579,7 @@ __gnat_portable_spawn (char *args[])
strcat (args[0], args_0);
strcat (args[0], "\"");
- status = spawnvp (P_WAIT, args_0, (char* const*)args);
+ status = spawnvp (P_WAIT, args_0, (const char* const*)args);
/* restore previous value */
free (args[0]);