diff options
author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:22:59 -0300 |
---|---|---|
committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:22:59 -0300 |
commit | f70f209239d51a5893f8f9f080b19b6ee94ff4af (patch) | |
tree | e0ba432caaf0b19987dd0c8f162d3d949da809f6 /modules/benchmark.c | |
parent | 48726c0c219ffeddb45befe0fb8621e1b2648e78 (diff) |
New upstream version 2.0.9preupstream/2.0.9pre
Diffstat (limited to 'modules/benchmark.c')
-rw-r--r-- | modules/benchmark.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/benchmark.c b/modules/benchmark.c index 018e30fe..0dd883dc 100644 --- a/modules/benchmark.c +++ b/modules/benchmark.c @@ -923,15 +923,17 @@ void hi_module_init(void) .name = N_("Send benchmark results"), .file_name = "benchmark.json", .generate_contents_for_upload = get_benchmark_results, + .optional = FALSE, }, { .name = N_("Receive benchmark results"), .file_name = "benchmark.json", + .optional = FALSE, }, }; - sync_manager_add_entry(&se[0]); sync_manager_add_entry(&se[1]); + sync_manager_add_entry(&se[0]); guint i; for (i = 0; i < G_N_ELEMENTS(entries) - 1 /* account for NULL */; i++) |