diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-07 15:25:53 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-07 15:29:45 +0200 |
commit | 9a8a7b0ed1e9f464ab26b6271940eb802b6c77f5 (patch) | |
tree | 1d9d9cc7720448f37ef375537cc16f8705a40154 /lib/plist.c | |
parent | Merge pull request #4449 from opensourcerouting/py-detect (diff) | |
download | frr-9a8a7b0ed1e9f464ab26b6271940eb802b6c77f5.tar.xz frr-9a8a7b0ed1e9f464ab26b6271940eb802b6c77f5.zip |
lib, pimd, sharpd: Various output string cleanups
Various compilers in our CI system were complaining about various
auto-conversions. Let's get these cleaned up a bit more.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/plist.c')
-rw-r--r-- | lib/plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plist.c b/lib/plist.c index 9957ff1f5..54ea742c6 100644 --- a/lib/plist.c +++ b/lib/plist.c @@ -1009,7 +1009,7 @@ static int vty_prefix_list_uninstall(struct vty *vty, afi_t afi, if (pentry == NULL) { vty_out(vty, - "%% Can't find prefix-list %s with sequence number %lu\n", + "%% Can't find prefix-list %s with sequence number %" PRIu64 "\n", name, seqnum); return CMD_WARNING_CONFIG_FAILED; } |