Add newline at end of error()

This commit is contained in:
Laurent Vivier 2004-06-22 22:07:08 +00:00
parent a20db820ef
commit 4567497a2f

View File

@ -64,7 +64,7 @@ void error(char *x)
{ {
printf("\n\n"); printf("\n\n");
printf(x); printf(x);
printf("\n\n -- System halted"); printf("\n\n -- System halted\n");
while(1); /* Halt */ while(1); /* Halt */
} }