From 569b7471f96ab17d04d548de4ca56d389a365148 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 1 Jul 2025 13:41:35 +0200 Subject: Simplified a bit ROLLING_LOG buffer handling --- src/include/box64context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/box64context.h b/src/include/box64context.h index e7c7b0cc..910b0e8a 100644 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -235,8 +235,8 @@ typedef struct box64context_s { int stack_clone_used; // rolling logs - char* *log_call; - char* *log_ret; + char* log_call; // is a large string composed of slices of 256 chars + char* log_ret; // is a large string composed of sloces of 128 chars int current_line; } box64context_t; -- cgit 1.4.1