# | Line 1 | Line 1 | |
---|---|---|
1 | #include <stdlib.h> | |
2 | #include <stdio.h> | |
3 | #include <string.h> | |
4 | + | #include "config.h" |
5 | ||
6 | #ifdef IS_MPI | |
7 | #include <mpi.h> | |
# | Line 60 | Line 61 | int simError( void ) { | |
61 | } | |
62 | #endif | |
63 | ||
64 | < | strcat(errorMsg, ": "); |
64 | > | strcat(errorMsg, ":\n\t"); |
65 | > | |
66 | strncat(errorMsg, painCave.errMsg, strlen(painCave.errMsg)); | |
67 | + | |
68 | + | strcat(errorMsg, "\n"); |
69 | fprintf(stderr, errorMsg); | |
70 | ||
71 | #ifdef IS_MPI |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |