aboutsummaryrefslogtreecommitdiff
path: root/src/gui_backend_local.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-03-16 17:38:18 +0100
committerThomas White <taw@physics.org>2020-07-29 18:42:24 +0200
commit827f521b3f5661b38e615a1f77d77958a9c0663c (patch)
treeb61dcc279cefb9bdd03f78ce9e048715e13abfd7 /src/gui_backend_local.c
parent43a5b52f414eb6591ba8533435ae61c0a2fcd7e7 (diff)
Pass indexing algorithm to backend
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r--src/gui_backend_local.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c
index 4c81c35c..b3ba8657 100644
--- a/src/gui_backend_local.c
+++ b/src/gui_backend_local.c
@@ -29,9 +29,10 @@
#include "crystfel_gui.h"
-static int run_unitcell(struct crystfelproject *proj)
+static int run_unitcell(struct crystfelproject *proj,
+ const char *algo)
{
- STATUS("run unit cell!\n");
+ STATUS("run unit cell with '%s'!\n", algo);
return 0;
}