Browse Source

MT#55283 fix compiler warning

Change-Id: I7e103ba4eac16986ae53f0d99be7277ac51eb20a
pull/1546/head
Richard Fuchs 3 years ago
parent
commit
5d17e5e6bd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      t/test-stats.c

+ 3
- 3
t/test-stats.c View File

@ -1097,10 +1097,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,
@ -2125,7 +2125,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,


Loading…
Cancel
Save