BUG: Add newline between properties.

This commit is contained in:
Brad King 2008-01-15 10:38:15 -05:00
parent 3ebd9aa08b
commit 1ab0b18ea0
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ int main ()
std::string line = buffer;
if(line.size() && line.find("with scope VARIABLE") == std::string::npos)
{
fprintf(stderr,line.c_str());
fprintf(stderr, "%s\n", line.c_str());
result = 1;
}
}