Avoid double spaces in error messages to get same messages on Windows and Unix

This commit is contained in:
Dmitry Babokin
2013-04-15 19:10:10 +04:00
parent 5d64d23b61
commit af551b3c09
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ DeclSpecs::GetBaseType(SourcePos pos) const {
return NULL;
}
else if (soaWidth <= 0 || (soaWidth & (soaWidth - 1)) != 0) {
Error(pos, "soa<%d> width illegal. Value must be positive power "
Error(pos, "soa<%d> width illegal. Value must be positive power "
"of two.", soaWidth);
return NULL;
}