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

core: cib size must not exceed MAXINT/2

This commit is contained in:
René Kijewski 2014-11-26 18:04:54 +01:00
parent a07b44781d
commit 8a9220a85c

View File

@ -41,7 +41,7 @@ typedef struct {
*
* @param[out] cib Buffer to initialize.
* Must not be NULL.
* @param[in] size Size of the buffer.
* @param[in] size Size of the buffer, must not exceed MAXINT/2.
*/
static inline void cib_init(cib_t *__restrict cib, unsigned int size)
{