diff options
author | Thomas White <taw@physics.org> | 2021-04-19 15:34:43 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-04-19 15:34:43 +0200 |
commit | b126d28c8804fd30ca8934b3987e7a9cd1cfae93 (patch) | |
tree | 05547af18211da771e129f8f6f95114b9eb97af8 /libcrystfel/src/indexers | |
parent | 1b81067618def8e2b675faaa297df0a55fcb4e17 (diff) |
Move file_exists to utils (and eliminate several duplicates)
Diffstat (limited to 'libcrystfel/src/indexers')
-rw-r--r-- | libcrystfel/src/indexers/felix.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libcrystfel/src/indexers/felix.c b/libcrystfel/src/indexers/felix.c index 89de5f70..a02f146f 100644 --- a/libcrystfel/src/indexers/felix.c +++ b/libcrystfel/src/indexers/felix.c @@ -730,20 +730,6 @@ void felix_cleanup(IndexingPrivate *pp) } -static int file_exists(const char *filename) -{ - struct stat s; - - if ( stat(filename, &s) != 0 ) { - if ( errno == ENOENT ) return 0; - ERROR("Failed to check for %s.\n", filename); - exit(1); - } - - return 1; -} - - const char *felix_probe(UnitCell *cell) { pid_t pid; |