aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorbigbear <ns@bigbear.dk>2024-02-08 03:08:54 +0100
committerbigbear <ns@bigbear.dk>2024-02-08 19:52:53 +0100
commit33d6c7101cee251b91b4f01b2ddde55b4b2d50d9 (patch)
tree49ae675f7d68b90415db69bfcd21fe84fa74013d /modules
parent1dc1f18804969c191346b064cd232d3f5959b13c (diff)
FIX back ports
Diffstat (limited to 'modules')
-rw-r--r--modules/benchmark/bench_results.c2
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"));
}