From e02de979c5e1c13163c01c5932d76830abc79b9c Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 3 Oct 2022 09:17:33 -0400 Subject: [PATCH] MT#55283 fix compiler warning Change-Id: I7e103ba4eac16986ae53f0d99be7277ac51eb20a (cherry picked from commit 5d17e5e6bd0fe3b2a0ae9a75cf1f054690cc7f2e) --- t/test-stats.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/test-stats.c b/t/test-stats.c index e6ca9c519..bf6ba9066 100644 --- a/t/test-stats.c +++ b/t/test-stats.c @@ -970,10 +970,10 @@ int main(void) { "}\n"); RTPE_STATS_INC(ng_commands[NGC_OFFER]); - RTPE_GAUGE_SET(ng_command_times[NGC_OFFER], 2500000); + RTPE_GAUGE_SET(ng_command_times[NGC_OFFER], 2500000LL); RTPE_STATS_INC(ng_commands[NGC_OFFER]); - RTPE_GAUGE_SET(ng_command_times[NGC_OFFER], 3200000); + RTPE_GAUGE_SET(ng_command_times[NGC_OFFER], 3200000LL); graph_str = print_graphite_data(); assert_g_string_eq(graph_str, @@ -1871,7 +1871,7 @@ int main(void) { "}\n"); RTPE_STATS_INC(ng_commands[NGC_ANSWER]); - RTPE_GAUGE_SET(ng_command_times[NGC_ANSWER], 3200000); + RTPE_GAUGE_SET(ng_command_times[NGC_ANSWER], 3200000LL); graph_str = print_graphite_data(); assert_g_string_eq(graph_str,