aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-03-18 11:26:47 +0100
committerThomas White <taw@physics.org>2020-07-29 18:42:57 +0200
commit3022757e31b93542f332bcc1c323f63a853b7912 (patch)
treee54017a1ffd0216bbce405b71c78452f4f7d771f
parent2a9d0dc3cfd239d8e2e8b3e4ef93a274a872b196 (diff)
Add a couple of missing semicolons
Not previously noticed because ERROR and STATUS were macros
-rw-r--r--src/process_hkl.c2
-rw-r--r--tests/cellcompare_check.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 53379243..63c24912 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -774,7 +774,7 @@ int main(int argc, char *argv[])
}
if ( config_evenonly && config_oddonly ) {
- ERROR("Don't specify both --even-only and --odd-only\n")
+ ERROR("Don't specify both --even-only and --odd-only\n");
return 1;
}
diff --git a/tests/cellcompare_check.c b/tests/cellcompare_check.c
index beb1d844..129fa367 100644
--- a/tests/cellcompare_check.c
+++ b/tests/cellcompare_check.c
@@ -243,7 +243,7 @@ static void yaro_test()
RationalMatrix *m = NULL;
cmatch = compare_reindexed_cell_parameters(cell, reference, dtols, &m);
- STATUS("The new match:\n")
+ STATUS("The new match:\n");
cell_print(cmatch);
STATUS("The matrix:\n");
rtnl_mtx_print(m);