1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 00:29:46 +01:00

sys/luid: luid_custom() use fixed width int

This changes the type of the last parameter of `luid_custom()` to a
fixed width integer for consistent behavior among different
architectures.
This commit is contained in:
Marian Buschsieweke 2024-10-28 14:28:05 +01:00
parent b376bec667
commit 49c151e432
No known key found for this signature in database
GPG Key ID: 758BD52517F79C41
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ void luid_netdev_get_eui64(const netdev_t *netdev, eui64_t *addr);
* @param[in] len length of the LUID in bytes
* @param[in] gen custom LUID generator value
*/
void luid_custom(void *buf, size_t len, int gen);
void luid_custom(void *buf, size_t len, uint16_t gen);
/**
* @brief Get a LUID base value

View File

@ -67,7 +67,7 @@ void luid_get_lb(void *buf, size_t len)
((uint8_t *)buf)[len - 1] ^= lastused++;
}
void luid_custom(void *buf, size_t len, int gen)
void luid_custom(void *buf, size_t len, uint16_t gen)
{
luid_base(buf, len);