diff options
author | Benji Dial <benji@benjidial.net> | 2023-06-20 03:48:50 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2023-06-20 03:48:50 -0400 |
commit | 1940ef130528e58cdfe0dd1589091947f6d8b8c7 (patch) | |
tree | 156378cbfa060dcae4973a538c0f3237b9dfc1ca /tabulator-mpi | |
parent | d24a732c772b40f804403ab5758f33f74b2eb6ed (diff) | |
download | lib94-1940ef130528e58cdfe0dd1589091947f6d8b8c7.tar.gz |
rewrite compiler again, bringing more in line with standard, and add readme
Diffstat (limited to 'tabulator-mpi')
-rw-r--r-- | tabulator-mpi/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tabulator-mpi/main.cpp b/tabulator-mpi/main.cpp index cb60ecb..e6e1a27 100644 --- a/tabulator-mpi/main.cpp +++ b/tabulator-mpi/main.cpp @@ -21,7 +21,7 @@ const lib94::warrior *load_warrior(const char *file) { } catch (const lib94::compiler_exception &ex) { - fprintf(stderr, "error in %s on line %u: %s\n", file, ex.line_number, ex.message.c_str()); + fprintf(stderr, "error in %s on line %u: %s\n", file, ex.source_line_number, ex.message.c_str()); exit(1); } } |