Made symbol name char* due to issues with cleanup

This commit is contained in:
Patrick Lipka 2025-08-08 15:24:27 +02:00
parent 91553233ca
commit 7c09e3de9c
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ typedef enum {
// symbol table entry // symbol table entry
typedef struct{ typedef struct{
uintptr_t addr; uintptr_t addr;
char name[MAX_NAME_LEN]; char* name;
size_t size; size_t size;
} symbol_entry_t; } symbol_entry_t;