fixed const qual warning as suggested by @mheily

This commit is contained in:
CK Tan 2020-07-08 02:26:12 -07:00
parent 7af2dbf91f
commit a1d23056ac
1 changed files with 1 additions and 1 deletions

2
toml.c
View File

@ -298,7 +298,7 @@ struct toml_table_t {
};
static inline void xfree(const void* x) { if (x) FREE((void*)x); }
static inline void xfree(const void* x) { if (x) FREE((void*)(intptr_t)x); }
enum tokentype_t {