From 6defaebb8132e35f1960556021f18a79ee96d1a1 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 11 May 2021 11:36:11 +0200 Subject: GUI: Fix loading of merging parameters from project file Apparently, I can't count. --- src/gui_project.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui_project.c b/src/gui_project.c index 7229cbcd..789f2219 100644 --- a/src/gui_project.c +++ b/src/gui_project.c @@ -551,7 +551,7 @@ static void handle_var(const char *key, const char *val, parse_integration_opt(key, val, proj); } - if ( strncmp(key, "merging.", 9) == 0 ) { + if ( strncmp(key, "merging.", 8) == 0 ) { int i; parse_merging_opt(key, val, proj); for ( i=0; in_backends; i++ ) { -- cgit v1.2.3