about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-07-01 13:41:35 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-07-01 13:41:35 +0200
commit569b7471f96ab17d04d548de4ca56d389a365148 (patch)
treed728961e556b646ee251098b3412d2bfcc4722c9 /src/include
parent74710cbf6abd3327c046a9cd9c8f60519a569116 (diff)
downloadbox64-569b7471f96ab17d04d548de4ca56d389a365148.tar.gz
box64-569b7471f96ab17d04d548de4ca56d389a365148.zip
Simplified a bit ROLLING_LOG buffer handling
Diffstat (limited to 'src/include')
-rw-r--r--src/include/box64context.h4
1 files changed, 2 insertions, 2 deletions
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;