net: cleanup unsigned to unsigned int
[linux-2.6-block.git] / net / ipv4 / ipconfig.c
index 92ac7e7363a0624b6008ed5eaa6d35cccbd82544..f267280d87099b7d55aa91aea4c2f51e4c8db3d9 100644 (file)
@@ -1198,7 +1198,7 @@ static int __init ic_dynamic(void)
        d = ic_first_dev;
        retries = CONF_SEND_RETRIES;
        get_random_bytes(&timeout, sizeof(timeout));
-       timeout = CONF_BASE_TIMEOUT + (timeout % (unsigned) CONF_TIMEOUT_RANDOM);
+       timeout = CONF_BASE_TIMEOUT + (timeout % (unsigned int) CONF_TIMEOUT_RANDOM);
        for (;;) {
                /* Track the device we are configuring */
                ic_dev_xid = d->xid;