mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
unsigned [int] -> uint
This commit is contained in:
committed by
Ondrej Zajicek
parent
e348ef01b4
commit
ae80a2de95
@@ -24,7 +24,7 @@
|
||||
* Wherever possible, please use the memory resources instead.
|
||||
*/
|
||||
void *
|
||||
xmalloc(unsigned size)
|
||||
xmalloc(uint size)
|
||||
{
|
||||
void *p = malloc(size);
|
||||
if (p)
|
||||
@@ -44,7 +44,7 @@ xmalloc(unsigned size)
|
||||
* Wherever possible, please use the memory resources instead.
|
||||
*/
|
||||
void *
|
||||
xrealloc(void *ptr, unsigned size)
|
||||
xrealloc(void *ptr, uint size)
|
||||
{
|
||||
void *p = realloc(ptr, size);
|
||||
if (p)
|
||||
|
Reference in New Issue
Block a user