mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
heap: Fix type for heap monitor memset size
This commit is contained in:
parent
d0850516ab
commit
bd8a5ece58
2 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ void free(void *buf)
|
|||
void heap_monitor(heap_monitor_t *mon, bool print_node_stats)
|
||||
{
|
||||
u32 count = 0;
|
||||
memset(mon, 0, sizeof(heap_monitor));
|
||||
memset(mon, 0, sizeof(heap_monitor_t));
|
||||
|
||||
hnode_t *node = _heap.first;
|
||||
while (true)
|
||||
|
|
|
@ -137,7 +137,7 @@ void free(void *buf)
|
|||
void heap_monitor(heap_monitor_t *mon, bool print_node_stats)
|
||||
{
|
||||
u32 count = 0;
|
||||
memset(mon, 0, sizeof(heap_monitor));
|
||||
memset(mon, 0, sizeof(heap_monitor_t));
|
||||
|
||||
hnode_t *node = _heap.first;
|
||||
while (true)
|
||||
|
|
Loading…
Reference in a new issue