mirror of https://github.com/encounter/SDL.git
SDL_malloc.c: fix variable 'used' set but not used
Emitted by clang-cl
This commit is contained in:
parent
5c150ddc2f
commit
b51a88a95c
|
@ -3017,6 +3017,8 @@ internal_malloc_stats(mstate m)
|
||||||
(unsigned long) (maxfp));
|
(unsigned long) (maxfp));
|
||||||
fprintf(stderr, "system bytes = %10lu\n", (unsigned long) (fp));
|
fprintf(stderr, "system bytes = %10lu\n", (unsigned long) (fp));
|
||||||
fprintf(stderr, "in use bytes = %10lu\n", (unsigned long) (used));
|
fprintf(stderr, "in use bytes = %10lu\n", (unsigned long) (used));
|
||||||
|
#else
|
||||||
|
(void)used;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
POSTACTION(m);
|
POSTACTION(m);
|
||||||
|
|
Loading…
Reference in New Issue