mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 15:00:10 +01:00
platform: fix coding style (missing braces)
This commit is contained in:
parent
4a5ab5f6cb
commit
04182dcc9a
1 changed files with 2 additions and 1 deletions
|
|
@ -6345,7 +6345,7 @@ event_handler_read_netlink (NMPlatform *platform, gboolean wait_for_acks)
|
|||
|
||||
nle = event_handler_recvmsgs (platform, TRUE);
|
||||
|
||||
if (nle < 0)
|
||||
if (nle < 0) {
|
||||
switch (nle) {
|
||||
case -NLE_AGAIN:
|
||||
goto after_read;
|
||||
|
|
@ -6376,6 +6376,7 @@ event_handler_read_netlink (NMPlatform *platform, gboolean wait_for_acks)
|
|||
default:
|
||||
_LOGE ("netlink: read: failed to retrieve incoming events: %s (%d)", nl_geterror (nle), nle);
|
||||
break;
|
||||
}
|
||||
}
|
||||
any = TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue