aboutsummaryrefslogtreecommitdiff
path: root/src/check_hkl.c
diff options
context:
space:
mode:
authorTakanori Nakane <nakane.t@gmail.com>2014-09-09 14:34:49 +0100
committerThomas White <taw@physics.org>2014-09-18 16:50:18 +0200
commit0b1fa4693e4c4df54623cfeb91b3c887191236fa (patch)
tree264a765f1c53db1bf60f637e9f01603491c4d8bc /src/check_hkl.c
parent6bc1a23579b73dce27e5ce0c3abadc1c7d5e9111 (diff)
Fixed message from check_hkl.c
Diffstat (limited to 'src/check_hkl.c')
-rw-r--r--src/check_hkl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check_hkl.c b/src/check_hkl.c
index dc376779..f22373b0 100644
--- a/src/check_hkl.c
+++ b/src/check_hkl.c
@@ -444,7 +444,7 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
fh = fopen(shell_file, "w");
if ( fh == NULL ) {
- ERROR("Couldn't open 'shells.dat'\n");
+ ERROR("Couldn't open '%s'\n", shell_file);
return;
}
@@ -645,7 +645,7 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
fclose(fh);
- STATUS("Resolution shell information written to shells.dat.\n");
+ STATUS("Resolution shell information written to %s.\n", shell_file);
free(possible);
free(measurements);