Skip to content
Snippets Groups Projects
Commit 3cdeeb84 authored by rswindell's avatar rswindell
Browse files

Added missing \n in load_cfg error message.

parent 0e6421f9
No related branches found
No related tags found
No related merge requests found
...@@ -1388,7 +1388,7 @@ int main(int argc, char** argv) ...@@ -1388,7 +1388,7 @@ int main(int argc, char** argv)
sprintf(str,"Loading configuration files from %s", scfg.ctrl_dir); sprintf(str,"Loading configuration files from %s", scfg.ctrl_dir);
bbs_lputs(str); bbs_lputs(str);
if(!load_cfg(&scfg, NULL /* text.dat */, TRUE /* prep */, error)) { if(!load_cfg(&scfg, NULL /* text.dat */, TRUE /* prep */, error)) {
fprintf(stderr,"\n!ERROR Loading Configuration Files: %s", error); fprintf(stderr,"\n!ERROR Loading Configuration Files: %s\n", error);
return(-1); return(-1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment