From 2811873bd7778c923238b916ed94419e50945d88 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 1 Sep 2025 19:40:08 -0400 Subject: Explicit type casting for size --- src/tomo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tomo.c b/src/tomo.c index e7c943d7..e6636cfc 100644 --- a/src/tomo.c +++ b/src/tomo.c @@ -244,7 +244,7 @@ int main(int argc, char *argv[]) { } if (show_changelog) { - print_inline(string_slice((const char *)CHANGES_md, CHANGES_md_len)); + print_inline(string_slice((const char *)CHANGES_md, (size_t)CHANGES_md_len)); return 0; } -- cgit v1.2.3