aboutsummaryrefslogtreecommitdiff
path: root/src/gui_backend_local.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r--src/gui_backend_local.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c
index 0c459d28..2eb5d2b8 100644
--- a/src/gui_backend_local.c
+++ b/src/gui_backend_local.c
@@ -238,8 +238,8 @@ static void cancel(struct crystfelproject *proj)
if ( !priv->indexamajig_running ) return;
- ERROR("Stopping indexamajig.\n");
- kill(priv->indexamajig_pid, SIGQUIT);
+ ERROR("Stopping indexamajig (pid %i).\n", priv->indexamajig_pid);
+ kill(-priv->indexamajig_pid, SIGINT);
}