diff options
author | Thomas White <taw@physics.org> | 2020-03-18 11:26:47 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:57 +0200 |
commit | 3022757e31b93542f332bcc1c323f63a853b7912 (patch) | |
tree | e54017a1ffd0216bbce405b71c78452f4f7d771f /src/process_hkl.c | |
parent | 2a9d0dc3cfd239d8e2e8b3e4ef93a274a872b196 (diff) |
Add a couple of missing semicolons
Not previously noticed because ERROR and STATUS were macros
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r-- | src/process_hkl.c | 2 |
1 files changed, 1 insertions, 1 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; } |