Skip to content

Commit

Permalink
Change the format in the message to match the correct type. Use %zu to
Browse files Browse the repository at this point in the history
print a value of type size_t.
  • Loading branch information
formiano committed Dec 13, 2024
1 parent 3d25c0f commit a6c1c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/enigma.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ bool checkLogin(const char *user, const char *password)
void dump_malloc_stats(void)
{
struct mallinfo2 mi = mallinfo2();
eDebug("[Enigma] Malloc %d total.", mi.uordblks);
eDebug("[Enigma] Malloc %zu total.", mi.uordblks);
}

#ifdef USE_LIBVUGLES2
Expand Down

0 comments on commit a6c1c31

Please sign in to comment.