mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-02-17 20:34:28 +01:00
Fixed compile warning
This commit is contained in:
parent
16b8c4ea43
commit
8ed16ea465
@ -2946,13 +2946,17 @@ static void
|
||||
internal_malloc_stats(mstate m)
|
||||
{
|
||||
if (!PREACTION(m)) {
|
||||
#ifndef LACKS_STDIO_H
|
||||
size_t maxfp = 0;
|
||||
#endif
|
||||
size_t fp = 0;
|
||||
size_t used = 0;
|
||||
check_malloc_state(m);
|
||||
if (is_initialized(m)) {
|
||||
msegmentptr s = &m->seg;
|
||||
#ifndef LACKS_STDIO_H
|
||||
maxfp = m->max_footprint;
|
||||
#endif
|
||||
fp = m->footprint;
|
||||
used = fp - (m->topsize + TOP_FOOT_SIZE);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user