diff options
author | Thomas White <taw@physics.org> | 2021-05-11 11:36:11 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-05-11 11:37:07 +0200 |
commit | 6defaebb8132e35f1960556021f18a79ee96d1a1 (patch) | |
tree | f4e85249f5091c6deca105f6bb3f81efc7123964 /src | |
parent | b0879e0989711bb0dd1109425584bb75141cbbe8 (diff) |
GUI: Fix loading of merging parameters from project file
Apparently, I can't count.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui_project.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; i<proj->n_backends; i++ ) { |