aboutsummaryrefslogtreecommitdiff
path: root/src/reflections.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-04-14 19:32:26 +0200
committerThomas White <taw@physics.org>2010-04-14 19:32:26 +0200
commit7fb83c9c134a0c3056de989cf0c934abe4b1cebb (patch)
tree6a48081eca8c60b6dd7bd63fc583396fb6423137 /src/reflections.c
parentd8750c73d11d08c13239091aca4ad325fcd16ba5 (diff)
Improve error messages
Diffstat (limited to 'src/reflections.c')
-rw-r--r--src/reflections.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflections.c b/src/reflections.c
index b49b4a15..a5917d1e 100644
--- a/src/reflections.c
+++ b/src/reflections.c
@@ -93,7 +93,7 @@ double *read_reflections(const char *filename, unsigned int *counts)
fh = fopen(filename, "r");
if ( fh == NULL ) {
- ERROR("Failed to open input file\n");
+ ERROR("Failed to open input file '%s'\n", filename);
return NULL;
}