diff options
author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-08 20:43:26 +0100 |
---|---|---|
committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-08 20:44:53 +0100 |
commit | 0d6f7fd6fd9dcaa62fb77a10d3a1ad8d0d74f980 (patch) | |
tree | db39fd913f349a353a62ead250210aab49a8cc09 /babeld | |
parent | Merge pull request #5924 from donaldsharp/more_func (diff) | |
download | frr-0d6f7fd6fd9dcaa62fb77a10d3a1ad8d0d74f980.tar.xz frr-0d6f7fd6fd9dcaa62fb77a10d3a1ad8d0d74f980.zip |
*: Replace `sizeof something` to sizeof(something)
Satisfy checkpatch.pl requirements (check for sizeof without parenthesis)
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
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); |