diff options
-rw-r--r-- | libcrystfel/src/image-hdf5.c | 2 | ||||
-rw-r--r-- | src/process_image.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/libcrystfel/src/image-hdf5.c b/libcrystfel/src/image-hdf5.c index 8ec76ee6..07e3b6b8 100644 --- a/libcrystfel/src/image-hdf5.c +++ b/libcrystfel/src/image-hdf5.c @@ -1833,7 +1833,7 @@ char **image_hdf5_expand_frames(const DataTemplate *dtempl, fh = H5Fopen(filename, H5F_ACC_RDONLY, H5P_DEFAULT); if ( fh < 0 ) { - ERROR("Couldn't open file (expand): %s\n", filename); + ERROR("Couldn't open file (hdf5_expand_frames): %s\n", filename); return NULL; } diff --git a/src/process_image.c b/src/process_image.c index 4f779708..7e7adbaf 100644 --- a/src/process_image.c +++ b/src/process_image.c @@ -130,8 +130,7 @@ static struct image *file_wait_open_read(const char *filename, if ( (wait_for_file != 0) && (file_wait_time != 0) ) { if ( !wait_message_done ) { - STATUS("Waiting for '%s'\n", - filename); + STATUS("Waiting for '%s'\n", filename); wait_message_done = 1; } @@ -143,7 +142,7 @@ static struct image *file_wait_open_read(const char *filename, } - ERROR("File %s not found\n", filename); + ERROR("File not found: %s (process_image)\n", filename); return NULL; } |