diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2024-01-24 14:50:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 14:50:30 +0100 |
commit | e3e4232102f71c215dd41e253619f771731bb161 (patch) | |
tree | 57fe0c75ba87fb22d67b63e87e9be81292b96ff0 /pceplib | |
parent | Merge pull request #15203 from donaldsharp/sharp_neigh_coverity (diff) | |
parent | pceplib: fix compilation error (diff) | |
download | frr-e3e4232102f71c215dd41e253619f771731bb161.tar.xz frr-e3e4232102f71c215dd41e253619f771731bb161.zip |
Merge pull request #15211 from pguibert6WIND/json_compilation_pceplib
pceplib: fix compilation error
Diffstat (limited to 'pceplib')
-rw-r--r-- | pceplib/test/pcep_utils_counters_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pceplib/test/pcep_utils_counters_test.c b/pceplib/test/pcep_utils_counters_test.c index d3d5197b5..f3bce5caf 100644 --- a/pceplib/test/pcep_utils_counters_test.c +++ b/pceplib/test/pcep_utils_counters_test.c @@ -113,7 +113,7 @@ void test_create_subgroup_counter() CU_ASSERT_FALSE(create_subgroup_counter(NULL, counter_id, counter_name, counter_name_json)); CU_ASSERT_FALSE(create_subgroup_counter(subgroup, counter_id + 1, - counter_name)); + counter_name, counter_name_json)); CU_ASSERT_FALSE( create_subgroup_counter(subgroup, counter_id, NULL, NULL)); CU_ASSERT_EQUAL(subgroup->num_counters, 0); |