- Fixed bug whereby a % character could not be used in a description. Problem was use of fprintf, which when changed to fputs, fixed the problem.

This commit is contained in:
Paul Beckingham
2008-05-30 20:59:28 -04:00
parent 654eb260c7
commit 1aa9051885
3 changed files with 7 additions and 8 deletions

View File

@@ -256,8 +256,7 @@ int main (int argc, char** argv)
return -2;
}
// return 0;
exit (0);
return 0;
}
////////////////////////////////////////////////////////////////////////////////