summaryrefslogtreecommitdiffstats
path: root/babeld
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-03-09 01:01:10 +0100
committerGitHub <noreply@github.com>2020-03-09 01:01:10 +0100
commita9c5346c295acf463096716c559daca51668d5f6 (patch)
treeceaf5f13ead8cbde1c501aa45e65df8446410ad7 /babeld
parentMerge pull request #5934 from rubenk/ldpd-fix-linking-error-with-gcc-10 (diff)
parent*: Replace `sizeof something` to sizeof(something) (diff)
downloadfrr-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.c2
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);