diff options
author | Thomas White <taw@physics.org> | 2020-03-16 17:38:18 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:24 +0200 |
commit | 827f521b3f5661b38e615a1f77d77958a9c0663c (patch) | |
tree | b61dcc279cefb9bdd03f78ce9e048715e13abfd7 /src/gui_backend_local.c | |
parent | 43a5b52f414eb6591ba8533435ae61c0a2fcd7e7 (diff) |
Pass indexing algorithm to backend
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r-- | src/gui_backend_local.c | 5 |
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; } |