Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
lovyan03 committed Jul 9, 2023
1 parent 36050a5 commit 9001e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lgfx/v1/platforms/esp32/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ namespace lgfx
auto s = (const uint32_t*)src;
do
{
printf("0x%08x = 0x%08x\n", (size_t)s, s[0]);
printf("0x%08x = 0x%08x\n", (int)s, (int)s[0]);
++s;
len -= 4;
} while (len > 0);
Expand Down

0 comments on commit 9001e6f

Please sign in to comment.