aboutsummaryrefslogtreecommitdiff
path: root/src/indexamajig.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-04-27 17:07:39 +0200
committerThomas White <taw@physics.org>2021-04-27 17:07:39 +0200
commit0ef5a4eb5da6dedf8e98d9adba22e6030d7eb86c (patch)
tree06b03c17bd3dc54769029a6bea7611b4bb890ff5 /src/indexamajig.c
parentc5eef6852bd1ea01c2037d110cd39c8ab676565c (diff)
indexamajig: Fix an error message
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r--src/indexamajig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 524022b2..7389ad39 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -1052,8 +1052,8 @@ int main(int argc, char *argv[])
/* Load data template (new API) */
args.iargs.dtempl = data_template_new_from_file(args.geom_filename);
if ( args.iargs.dtempl == NULL ) {
- ERROR("Failed to read detector geometry from '%s'"
- " (for new API)\n", args.geom_filename);
+ ERROR("Failed to read detector geometry from '%s'\n",
+ args.geom_filename);
return 1;
}