nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

commit bf1a9f1211726e2fd42f5aa5424034470ac87751
parent f7d6bec5a3b79425dab88043a10efad80e26fcb4
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Mon, 14 Apr 2025 11:25:27 +0200

Fix

Diffstat:
Msrc/utils/dbg_log.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils/dbg_log.h b/src/utils/dbg_log.h @@ -11,7 +11,7 @@ write_wrapper(void (*write)(const char *), const char *str, ...) va_list args; va_start(args, str); - sprintf(message, str, args); + vsprintf(message, str, args); va_end(args); write(message);