Commit aad9ff31 by Aaron W. LaFramboise Committed by Aaron W. LaFramboise

* adaint.c (__gnat_portable_spawn): Adjust cast.

From-SVN: r97013
parent 0a19d49f
2005-03-24 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* adaint.c (__gnat_portable_spawn): Adjust cast.
2005-03-23 Joseph S. Myers <joseph@codesourcery.com>
* misc.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
......
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment