Browse Source

MT#55283 fix compiler warning

Change-Id: I7e103ba4eac16986ae53f0d99be7277ac51eb20a
(cherry picked from commit 5d17e5e6bd)
mr10.5.3
Richard Fuchs 3 years ago
parent
commit
e02de979c5
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      t/test-stats.c

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

@ -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,


Loading…
Cancel
Save