diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-03-15 16:56:07 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-04-06 19:22:43 +0200 |
commit | d37653864b4af35e262294a09c756fedec4793b3 (patch) | |
tree | 2169860f45fc67f4409044b7d820601f17c9c81f /pbrd/pbr_main.c | |
parent | doc: Add documentation for PBRD (diff) | |
download | frr-d37653864b4af35e262294a09c756fedec4793b3.tar.xz frr-d37653864b4af35e262294a09c756fedec4793b3.zip |
pbrd: Cleanup CI warnings
There are a bunch of CI warnings that need to be cleaned up.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pbrd/pbr_main.c')
-rw-r--r-- | pbrd/pbr_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pbrd/pbr_main.c b/pbrd/pbr_main.c index c8ee2f599..83cac6daa 100644 --- a/pbrd/pbr_main.c +++ b/pbrd/pbr_main.c @@ -66,7 +66,7 @@ struct zebra_privs_t pbr_privs = { .cap_num_p = array_size(_caps_p), .cap_num_i = 0}; -struct option longopts[] = {{0}}; +struct option longopts[] = { { 0 } }; /* Master of threads. */ struct thread_master *master; @@ -120,7 +120,7 @@ FRR_DAEMON_INFO(pbrd, PBR, .vty_port = PBR_VTY_PORT, .signals = pbr_signals, .n_signals = array_size(pbr_signals), - .privs = &pbr_privs, ) + .privs = &pbr_privs,) int main(int argc, char **argv, char **envp) { |