diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-01-30 10:08:25 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-01-31 15:15:42 -0500 |
| commit | d5dea3506e4bb55ebea5a225c70e24e8d6c800ac (patch) | |
| tree | 0692150aabb29769357007ac2a095808c52e0952 /pathd/path_pcep.c | |
| parent | da21ae9dc78ad3b7681047f5783e83af9a0242b3 (diff) | |
pathd: Add missing enum's to switch statement
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'pathd/path_pcep.c')
| -rw-r--r-- | pathd/path_pcep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathd/path_pcep.c b/pathd/path_pcep.c index ce631eb7b0..8a78259077 100644 --- a/pathd/path_pcep.c +++ b/pathd/path_pcep.c @@ -210,7 +210,7 @@ int pcep_main_event_handler(enum pcep_main_event_type type, int pcc_id, ret = pcep_main_event_remove_candidate_segments( (const char *)payload, true); break; - default: + case PCEP_MAIN_EVENT_UNDEFINED: flog_warn(EC_PATH_PCEP_RECOVERABLE_INTERNAL_ERROR, "Unexpected event received in the main thread: %u", type); |
