Skip to content

Commit faac15c

Browse files
author
polycfd
authored
Cosmetic change to the error and warning messages
1 parent 6ae700a commit faac15c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/misc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ int apecss_erroronscreen(int num, char* message)
2626
if (num != 0) // Terminal error. Stop program and exit
2727
{
2828
printf("------------------------------------------------------------------------------------ \n");
29-
sprintf(str, "| APECSS | ERROR: %s", message);
29+
sprintf(str, "ERROR: %s", message);
3030
apecss_writeonscreen(str);
3131
printf("------------------------------------------------------------------------------------ \n");
3232
exit(1);
3333
}
3434
else
3535
{
3636
printf("------------------------------------------------------------------------------------ \n");
37-
sprintf(str, "| APECSS | WARNING: %s", message);
37+
sprintf(str, "WARNING: %s", message);
3838
apecss_writeonscreen(str);
3939
printf("------------------------------------------------------------------------------------ \n");
4040
}
@@ -144,4 +144,4 @@ int apecss_linegetskip(char* str, FILE* OptionsFile)
144144
}
145145

146146
return (0);
147-
}
147+
}

0 commit comments

Comments
 (0)