mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-24 21:21:56 +00:00
Change xrealloc argument type to fix the build
This commit is contained in:
parent
aea2fe5f77
commit
f6d6a5235a
@ -65,7 +65,7 @@ xmalloc (size)
|
|||||||
|
|
||||||
void *
|
void *
|
||||||
xrealloc (ptr, size)
|
xrealloc (ptr, size)
|
||||||
|
void* ptr;
|
||||||
size_t size;
|
size_t size;
|
||||||
{
|
{
|
||||||
register void * value = realloc (ptr, size);
|
register void * value = realloc (ptr, size);
|
||||||
|
Loading…
Reference in New Issue
Block a user