diff options
author | Thomas White <taw@physics.org> | 2014-11-27 16:04:48 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-11-27 16:04:48 +0100 |
commit | 9e5e52b5eae1c883b8d51efbe2cdc37fb20f6d8e (patch) | |
tree | f4bb87c2a68d631aa9d2eb4029d7ebf9e28fcf33 /libcrystfel/src/hdf5-file.c | |
parent | b7a7008b8236a2035241935d1276e7113d1fc82c (diff) |
Fix typo in error message
Diffstat (limited to 'libcrystfel/src/hdf5-file.c')
-rw-r--r-- | libcrystfel/src/hdf5-file.c | 2 |
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; |