diff options
author | Thomas White <taw@physics.org> | 2020-12-11 14:21:49 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-12-11 14:21:49 +0100 |
commit | d8672864f60291214b445f8a658c642086aab8bc (patch) | |
tree | 9bf951b5caa86dd88a366b00a4c33ce2a7812a03 /src/gui_backend_slurm.c | |
parent | e9b583b2c63d14e859223bce4b56afe3fe04815c (diff) |
result -> indexing_result
Because shortly we will have merging_result as well
Diffstat (limited to 'src/gui_backend_slurm.c')
-rw-r--r-- | src/gui_backend_slurm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui_backend_slurm.c b/src/gui_backend_slurm.c index d572a9b4..74396699 100644 --- a/src/gui_backend_slurm.c +++ b/src/gui_backend_slurm.c @@ -502,8 +502,8 @@ static void *run_indexing(const char *job_title, free(job); return NULL; } else { - add_result(proj, strdup(job_title), - streams, job->n_blocks); + add_indexing_result(proj, strdup(job_title), + streams, job->n_blocks); } return job; } @@ -734,7 +734,7 @@ static void read_indexing_opt(void *opts_priv, static void *run_merging(const char *job_title, const char *job_notes, struct crystfelproject *proj, - struct gui_result *input, + struct gui_indexing_result *input, void *opts_priv) { struct slurm_job *job; |