aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-11-27 16:04:48 +0100
committerThomas White <taw@physics.org>2014-11-27 16:04:48 +0100
commit9e5e52b5eae1c883b8d51efbe2cdc37fb20f6d8e (patch)
treef4bb87c2a68d631aa9d2eb4029d7ebf9e28fcf33 /libcrystfel
parentb7a7008b8236a2035241935d1276e7113d1fc82c (diff)
Fix typo in error message
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/hdf5-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c
index 160e0cb8..5eb8e768 100644
--- a/libcrystfel/src/hdf5-file.c
+++ b/libcrystfel/src/hdf5-file.c
@@ -106,7 +106,7 @@ struct hdfile *hdfile_open(const char *filename)
if ( f == NULL ) return NULL;
if ( access( filename, R_OK ) == -1 ) {
- ERROR("File does not exists or it cannot be read: %s\n",
+ ERROR("File does not exist or cannot be read: %s\n",
filename);
free(f);
return NULL;