* Uninitialised variable.

This commit is contained in:
Eelco Dolstra 2006-08-30 12:00:27 +00:00
parent 547b119f25
commit 3151bdea55
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ Expr evalExpr2(EvalState & state, Expr e)
/* Backwards compatability: subpath operator (~). */
if (matchSubPath(e, e1, e2)) {
static bool haveWarned;
static bool haveWarned = false;
warnOnce(haveWarned, "the subpath operator (~) is deprecated, use string concatenation (+) instead");
ATermList context = ATempty;
bool dummy;