diff options
| author | David Lamparter <equinox@diac24.net> | 2021-03-17 06:23:19 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:30:53 +0100 | 
| commit | 4d39e49673035f74d5a59d654f5c27c81fcb41d5 (patch) | |
| tree | 0335f9f5fcf8d38a30aaa71b5974c012f878a5e0 /pathd/path_pcep_debug.c | |
| parent | 4d7ae2c0ddc439c0409b04d8b68efa18d4ceeed2 (diff) | |
pathd: fix %pI4 <> %pI6 snafu
... as noted by the frr-format GCC plugin.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'pathd/path_pcep_debug.c')
| -rw-r--r-- | pathd/path_pcep_debug.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pathd/path_pcep_debug.c b/pathd/path_pcep_debug.c index 2dfe2130bf..d222371bbb 100644 --- a/pathd/path_pcep_debug.c +++ b/pathd/path_pcep_debug.c @@ -1288,7 +1288,7 @@ void _format_path_hop(int ps, struct path_hop *hop)  				     &hop->nai.remote_addr.ipaddr_v6);  			break;  		case PCEP_SR_SUBOBJ_NAI_UNNUMBERED_IPV4_ADJACENCY: -			PATHD_FORMAT("%*sNAI: %pI4(%u)/%pI4(%u)\n", ps, "", +			PATHD_FORMAT("%*sNAI: %pI6(%u)/%pI6(%u)\n", ps, "",  				     &hop->nai.local_addr.ipaddr_v6,  				     hop->nai.local_iface,  				     &hop->nai.remote_addr.ipaddr_v6,  | 
