Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 563c17cb authored by Markus Elfring's avatar Markus Elfring Committed by Jonathan Corbet
Browse files

Documentation-getdelays: Apply a recommendation from "checkpatch.pl" in main()



The script "checkpatch.pl" pointed out that assignments should usually
not be performed within condition checks.
Thus move the assignment for the variable "nl_sd" to a separate statement.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent b6e14040
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -375,7 +375,8 @@ int main(int argc, char *argv[])
		}
	}

	if ((nl_sd = create_nl_socket(NETLINK_GENERIC)) < 0)
	nl_sd = create_nl_socket(NETLINK_GENERIC);
	if (nl_sd < 0)
		err(1, "error creating Netlink socket\n");