diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 03:08:54 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 33d6c7101cee251b91b4f01b2ddde55b4b2d50d9 (patch) | |
tree | 49ae675f7d68b90415db69bfcd21fe84fa74013d /modules | |
parent | 1dc1f18804969c191346b064cd232d3f5959b13c (diff) |
FIX back ports
Diffstat (limited to 'modules')
-rw-r--r-- | modules/benchmark/bench_results.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/benchmark/bench_results.c b/modules/benchmark/bench_results.c index 28ce657d..42930d74 100644 --- a/modules/benchmark/bench_results.c +++ b/modules/benchmark/bench_results.c @@ -348,7 +348,7 @@ static void append_cpu_config(JsonObject *object, if (output->len) g_string_append(output, ", "); - g_string_append_printf(output, "%ldx %.2f %s", json_node_get_int(member_node), + g_string_append_printf(output, "%ldx %.2f %s", (long int)json_node_get_int(member_node), parse_frequency(member_name), _("MHz")); } |