pyrite: Fix compiler warning

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2026-02-24 12:02:55 -08:00
parent d627de2c15
commit 842d39faca

View File

@@ -354,7 +354,7 @@ int write_1_to_file(const char *file_name)
int file_type_from_ext(const char *file_name) int file_type_from_ext(const char *file_name)
{ {
char *ptr; const char *ptr;
char buffer[32]; char buffer[32];
ptr = strrchr(file_name, '.'); ptr = strrchr(file_name, '.');