style: fix missing spaces in control statements

Result of running 'hg m5style --skip-all --fix-control -a'.
This commit is contained in:
Steve Reinhardt
2016-02-06 17:21:19 -08:00
parent dc8018a5c3
commit 5592798865
85 changed files with 249 additions and 249 deletions

View File

@@ -119,7 +119,7 @@ connectPorts(SimObject *o1, const std::string &name1, int i1,
mo1 = dynamic_cast<MemObject*>(o1);
mo2 = dynamic_cast<MemObject*>(o2);
if(mo1 == NULL || mo2 == NULL) {
if (mo1 == NULL || mo2 == NULL) {
panic ("Error casting SimObjects %s and %s to MemObject", o1->name(),
o2->name());
}