Cleaned up g++ warnings.

This commit is contained in:
Seth Hall 2011-01-20 15:07:24 -05:00
parent aa0691ba21
commit ef1650f6a2
7 changed files with 21 additions and 21 deletions

View file

@ -99,8 +99,8 @@ void* PrefixTable::Lookup(const Val* value, bool exact) const
break;
default:
internal_error(fmt("Wrong index type %d for PrefixTable",
value->Type()->Tag()));
internal_error("Wrong index type %d for PrefixTable",
value->Type()->Tag());
return 0;
}
}