Skip to content

Commit d5bd776

Browse files
committed
dbg logging safe_fread
1 parent d605cb0 commit d5bd776

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sfloader/fluid_sfont.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ fluid_long_long_t default_ftell(void *handle)
5353

5454
int safe_fread(void *buf, fluid_long_long_t count, void *fd)
5555
{
56+
FLUID_LOG(FLUID_INFO, "safe_fread: buf=%p, count=%" FLUID_PRIi64 ", (size_t)count=%" FLUID_PRIi64 ", fd=%p", buf, count, (size_t)count, fd);
5657
if(FLUID_FREAD(buf, (size_t)count, 1, (FILE *)fd) != 1)
5758
{
5859
if(feof((FILE *)fd))

0 commit comments

Comments
 (0)