From 895a493ce36f7fc81232727177145bf3fd2bde63 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 23 Apr 2024 12:03:15 +0200 Subject: align_detector: Add missing argument in warning message Fixes: https://github.com/taw10/crystfel/issues/8 --- src/align_detector.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/align_detector.c b/src/align_detector.c index 8e6d2fcb..03b4a46c 100644 --- a/src/align_detector.c +++ b/src/align_detector.c @@ -227,7 +227,8 @@ static int run_pede() strcpy(cmdline, dir); strcat(cmdline, "/pede"); if ( !file_exists(cmdline) ) { - ERROR("Couldn't find %s - falling back on shell path\n"); + ERROR("Couldn't find %s - falling back on shell path\n", + cmdline); strcpy(cmdline, "pede millepede.txt"); } else { strcat(cmdline, " millepede.txt"); -- cgit v1.2.3