chiark / gitweb /
trivial coding style clean ups
[elogind.git] / src / udev / net / link-config.c
index 738954c728910f290f0f2cc362c7b777ff36e45b..f25afa60c791e8bc356675a7ceb2d773bf56edcc 100644 (file)
@@ -334,7 +334,7 @@ static int get_mac(struct udev_device *device, bool want_random, struct ether_ad
 
         srandom(seed);
 
-        for(i = 0; i < ETH_ALEN; i++) {
+        for (i = 0; i < ETH_ALEN; i++) {
                 mac->ether_addr_octet[i] = random();
         }