Skip to content

Commit

Permalink
Merge pull request #15232 from donaldsharp/null_argument_warning_8.4
Browse files Browse the repository at this point in the history
bgpd: fix NULL argument warning
  • Loading branch information
donaldsharp authored Jan 25, 2024
2 parents 34512bd + 090dcf7 commit 78dbcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2805,7 +2805,7 @@ const char *print_peer_gr_cmd(enum peer_gr_command pr_gr_cmd)

const char *print_global_gr_mode(enum global_mode gl_mode)
{
const char *global_gr_mode = NULL;
const char *global_gr_mode = "???";

switch (gl_mode) {
case GLOBAL_HELPER:
Expand Down

0 comments on commit 78dbcc6

Please sign in to comment.