diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-03-09 01:01:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 01:01:10 +0100 |
commit | a9c5346c295acf463096716c559daca51668d5f6 (patch) | |
tree | ceaf5f13ead8cbde1c501aa45e65df8446410ad7 /babeld | |
parent | Merge pull request #5934 from rubenk/ldpd-fix-linking-error-with-gcc-10 (diff) | |
parent | *: Replace `sizeof something` to sizeof(something) (diff) | |
download | frr-a9c5346c295acf463096716c559daca51668d5f6.tar.xz frr-a9c5346c295acf463096716c559daca51668d5f6.zip |
Merge pull request #5937 from ton31337/fix/sizeof
*: Replace `sizeof something` to sizeof(something)
Diffstat (limited to 'babeld')
-rw-r--r-- | babeld/babeld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/babeld/babeld.c b/babeld/babeld.c index 83a2a3137..a7a348199 100644 --- a/babeld/babeld.c +++ b/babeld/babeld.c @@ -138,7 +138,7 @@ babel_create_routing_process (void) assert (babel_routing_process == NULL); /* Allocaste Babel instance. */ - babel_routing_process = XCALLOC (MTYPE_BABEL, sizeof (struct babel)); + babel_routing_process = XCALLOC(MTYPE_BABEL, sizeof(struct babel)); /* Initialize timeouts */ gettime(&babel_now); |