diff options
| author | sri-mohan1 <sri.mohan@samsung.com> | 2023-02-14 15:59:29 +0530 |
|---|---|---|
| committer | sri-mohan1 <sri.mohan@samsung.com> | 2023-02-14 15:59:29 +0530 |
| commit | 03b7208c4c5b8a31e6fdc5eb7831e218701570d3 (patch) | |
| tree | b99e544e0a71ce2beb25bf85423aa1c01ee040de /babeld/babeld.c | |
| parent | 44fab24d25cb9aca539578d91360cb37f7bb4278 (diff) | |
babeld: changes for code maintainability
These changes are for improving the code maintainability and readability
Signed-off-by: sri-mohan1 <sri.mohan@samsung.com>
Diffstat (limited to 'babeld/babeld.c')
| -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 972d52819b..81a1eb0e46 100644 --- a/babeld/babeld.c +++ b/babeld/babeld.c @@ -277,7 +277,7 @@ babel_get_myid(void) exit(1); } /* Clear group and global bits */ - myid[0] &= ~3; + UNSET_FLAG (myid[0], 3); } /* Make some noise so that others notice us, and send retractions in |
