From 5ac4ecea38737974f8f0927f01e8a6a5febf863b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 28 Mar 2025 14:30:42 -0400 Subject: [PATCH] Minor compat fix --- src/stdlib/paths.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stdlib/paths.c b/src/stdlib/paths.c index cf0eb04..ec07f2d 100644 --- a/src/stdlib/paths.c +++ b/src/stdlib/paths.c @@ -339,7 +339,7 @@ public OptionalArray_t Path$read_bytes(Path_t path, OptionalInt_t count) content[sb.st_size] = '\0'; close(fd); if (count.small && (int64_t)sb.st_size < target_count) - fail("Could not read ", target_count, " bytes from ", path, " (only got ", sb.st_size, ")"); + fail("Could not read ", target_count, " bytes from ", path, " (only got ", (uint64_t)sb.st_size, ")"); int64_t len = count.small ? target_count : (int64_t)sb.st_size; return (Array_t){.data=content, .atomic=1, .stride=1, .length=len}; } else { @@ -369,7 +369,7 @@ public OptionalArray_t Path$read_bytes(Path_t path, OptionalInt_t count) } close(fd); if (count.small != 0 && (int64_t)len < target_count) - fail("Could not read ", target_count, " bytes from ", path, " (only got ", len, ")"); + fail("Could not read ", target_count, " bytes from ", path, " (only got ", (uint64_t)len, ")"); return (Array_t){.data=content, .atomic=1, .stride=1, .length=len}; } }