diff options
author | Thomas White <taw@physics.org> | 2020-04-01 14:11:34 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:57 +0200 |
commit | 84cf3017548386058c2a788a065c7ddbad6f117e (patch) | |
tree | 40f288ff881455aeaa9e55944e13ef7c8a64a38d | |
parent | f1bf40379d54dde0ac8f1a1add948cb714cdf5e8 (diff) |
Add a missing semicolon
-rw-r--r-- | libcrystfel/src/pinkindexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/pinkindexer.c b/libcrystfel/src/pinkindexer.c index 22208885..9cf649c1 100644 --- a/libcrystfel/src/pinkindexer.c +++ b/libcrystfel/src/pinkindexer.c @@ -179,7 +179,7 @@ void *pinkIndexer_prepare(IndexingMethod *indm, UnitCell *cell, return NULL; } if(cell == NULL){ - ERROR("Pink indexer needs a unit cell file to be specified!") + ERROR("Pink indexer needs a unit cell file to be specified!"); return NULL; } |