diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-04-15 02:19:10 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-04-15 02:19:10 +0200 |
| commit | 8c56bc6ebf71ff94694ac456447acc2dc8b0ed72 (patch) | |
| tree | 045fa0d267d935b0ff4a1845063253df1d62213e /arch/v1/arch.c | |
| parent | c46d17b235d57dcbb2bb5455822420dc50ffac75 (diff) | |
Fixes building bugs on certain configurations
Diffstat (limited to 'arch/v1/arch.c')
| -rw-r--r-- | arch/v1/arch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/v1/arch.c b/arch/v1/arch.c index 6c01407..f336dd6 100644 --- a/arch/v1/arch.c +++ b/arch/v1/arch.c @@ -830,7 +830,7 @@ const char *arch_mnemonic(uint8_t inst) { // ---------------------------------------------------------------------------- #if defined(DATA_PUSH_PATH) #if defined(COMMAND_NEW) -void arch_push_data_header() { +void arch_push_data_header(void) { assert(g_sim_data); g_info("Creating 'arch_general' table in SQLite database"); @@ -895,7 +895,7 @@ void arch_push_data_header() { } #endif -void arch_push_data_line() { +void arch_push_data_line(void) { assert(g_sim_data); // Measure instruction population |
