Skip to content

Commit

Permalink
Fix printing config file info for MEMC parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
msoroush committed Oct 6, 2019
1 parent 0c40b76 commit 7135ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConfigSetup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void ConfigSetup::Init(const char *fileName)
exit(EXIT_FAILURE);
}
if(line.size() >= 3) {
printf("%-41s", "Info: Atom Names in BackBone of Small Molecule Kind");
printf("%-41s", "Info: Atom Names in BackBone of Small Molecule Kind ");
for(uint i = 1; i < line.size() - 1; i += 2) {
if(i != 1) {
printf(" , ");
Expand All @@ -362,7 +362,7 @@ void ConfigSetup::Init(const char *fileName)
exit(EXIT_FAILURE);
}
if(line.size() >= 3) {
printf("%-41s", "Info: Atom Names in BackBone of Large Molecule Kind");
printf("%-41s", "Info: Atom Names in BackBone of Large Molecule Kind ");
for(uint i = 1; i < line.size() - 1; i += 2) {
if(i != 1) {
printf(" , ");
Expand Down

0 comments on commit 7135ecb

Please sign in to comment.