* mkdeps.c (deps_calc_target): Remove incorrect 'const'.

From-SVN: r32346
This commit is contained in:
Jason Merrill 2000-03-05 21:47:50 +00:00 committed by Jason Merrill
parent 971cbc146e
commit 92df03e1de
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-03-05 Jason Merrill <jason@casey.cygnus.com>
* mkdeps.c (deps_calc_target): Remove incorrect 'const'.
2000-03-05 Mark Mitchell <mark@codesourcery.com>
* tree.def (RTL_EXPR): Update documentation.

View File

@ -180,7 +180,7 @@ deps_calc_target (d, t)
struct deps *d;
const char *t;
{
const char *o, *suffix;
char *o, *suffix;
t = base_name (t);
o = alloca (strlen (t) + 8);