diff options
author | Thomas White <taw@physics.org> | 2019-08-29 10:29:41 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-29 10:29:41 +0200 |
commit | 1b3b9301d3229536333a84e6e4aa1cfad1b45d74 (patch) | |
tree | 450a12531003304e2fe1dbebf8da23b64eb803c1 /libcrystfel | |
parent | f8f0ed90db33db65b3263d7013c973ca3f01ccd0 (diff) |
mosflm: Rename check_cell to check_mosflm_cell
Avoids duplicated function name
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/mosflm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/mosflm.c b/libcrystfel/src/mosflm.c index 10ca49ec..44761e47 100644 --- a/libcrystfel/src/mosflm.c +++ b/libcrystfel/src/mosflm.c @@ -132,8 +132,8 @@ struct mosflm_data { }; -static int check_cell(struct mosflm_private *mp, struct image *image, - UnitCell *cell) +static int check_mosflm_cell(struct mosflm_private *mp, struct image *image, + UnitCell *cell) { Crystal *cr; @@ -319,7 +319,7 @@ static int read_newmat(struct mosflm_data *mosflm, const char *filename, //STATUS("My cell:\n"); //cell_print(cell); - if ( check_cell(mosflm->mp, image, cell) ) { + if ( check_mosflm_cell(mosflm->mp, image, cell) ) { mosflm->success = 1; mosflm->done = 1; } |