From e10140906d76b2b249fa2155a9243ad4ba32b028 Mon Sep 17 00:00:00 2001 From: Ruud Overeem <overeem@astron.nl> Date: Tue, 30 May 2006 09:25:49 +0000 Subject: [PATCH] BugID: 664 Added missing semicolons. --- SAS/OTDB/test/tVICcomp.cc | 4 ++-- SAS/OTDB/test/tVTtree.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SAS/OTDB/test/tVICcomp.cc b/SAS/OTDB/test/tVICcomp.cc index 6c9e83c6243..4c871512ce2 100644 --- a/SAS/OTDB/test/tVICcomp.cc +++ b/SAS/OTDB/test/tVICcomp.cc @@ -146,7 +146,7 @@ int main (int argc, char* argv[]) { VICnodeDef aNode = tm.getComponentNode(topNodeID); LOG_INFO_STR(aNode); - LOG_INFO("check if node is topNode") + LOG_INFO("check if node is topNode"); bool isTop = tm.isTopComponent(topNodeID); ASSERTSTR(isTop, "isTopComponent(" << topNodeID << ") returned false"); @@ -221,7 +221,7 @@ int main (int argc, char* argv[]) { VICnodeDef testNode = tm.getComponentNode(ref3); LOG_INFO_STR(testNode); - LOG_INFO_STR("check if node ARG is topNode") + LOG_INFO_STR("check if node ARG is topNode"); isTop = tm.isTopComponent(ref3); ASSERTSTR(!isTop, "isTopComponent(" << ref3 << ") returned true"); diff --git a/SAS/OTDB/test/tVTtree.cc b/SAS/OTDB/test/tVTtree.cc index 266b7235e66..ec01bd32d1c 100644 --- a/SAS/OTDB/test/tVTtree.cc +++ b/SAS/OTDB/test/tVTtree.cc @@ -252,7 +252,7 @@ int main (int argc, char* argv[]) { tm.saveNode(param2); // Setting nr instances to some nice values - LOG_INFO("Setting up tree counts") + LOG_INFO("Setting up tree counts"); vector<OTDBnode> aNodeCol = tm.getItemList(VTtreeID, "RFI dete%"); aNode = *(aNodeCol.begin()); aNode.instances = 40; -- GitLab