diff options
author | Balaji.G <balajig81@gmail.com> | 2012-09-26 10:39:10 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2012-10-25 19:15:59 +0200 |
commit | 837d16ccbe0fca413f8927da6a34b1e97ccada8a (patch) | |
tree | 7aed5a517b619c03d11bf567f6a14cda6f8f5efe /zebra/main.c | |
parent | isisd: don't overrun list of protocols (diff) | |
download | frr-837d16ccbe0fca413f8927da6a34b1e97ccada8a.tar.xz frr-837d16ccbe0fca413f8927da6a34b1e97ccada8a.zip |
*: use array_size() helper macro
Use the array_size() helper macro. Replaces several instances of local
macros with the same definition.
Reviewed-by: Scott Feldman <sfeldma@cumulusnetworks.com>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/main.c b/zebra/main.c index 5b5265f27..50ac224e2 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -104,7 +104,7 @@ struct zebra_privs_t zserv_privs = .vty_group = VTY_GROUP, #endif .caps_p = _caps_p, - .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]), + .cap_num_p = array_size(_caps_p), .cap_num_i = 0 }; @@ -313,7 +313,7 @@ main (int argc, char **argv) zprivs_init (&zserv_privs); /* Vty related initialize. */ - signal_init (zebrad.master, Q_SIGC(zebra_signals), zebra_signals); + signal_init (zebrad.master, array_size(zebra_signals), zebra_signals); cmd_init (1); vty_init (zebrad.master); memory_init (); |