diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-01 19:40:08 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-01 19:40:08 -0400 |
| commit | 2811873bd7778c923238b916ed94419e50945d88 (patch) | |
| tree | f8c0f9873c156cb37696836a83e645f55a0e588d /src/tomo.c | |
| parent | d51460267940877ed9e14db261f26b0dee3c66f9 (diff) | |
Explicit type casting for size
Diffstat (limited to 'src/tomo.c')
| -rw-r--r-- | src/tomo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
