diff options
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/image-hdf5.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrystfel/src/image-hdf5.c b/libcrystfel/src/image-hdf5.c index 7023e811..fd16ac08 100644 --- a/libcrystfel/src/image-hdf5.c +++ b/libcrystfel/src/image-hdf5.c @@ -1976,7 +1976,8 @@ int is_hdf5_file(const char *filename) if ( ext == NULL ) return 0; return ( (strcmp(ext, ".h5") == 0) - || (strcmp(ext, ".cxi") == 0) ); + || (strcmp(ext, ".cxi") == 0) + || (strcmp(ext, ".nx5") == 0) ); } |