From 4387795a1168a2d763fca7812d46a65c6ff7af73 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 16 Dec 1996 23:22:31 +0000 Subject: [PATCH] * debug.h (scm_debug_frame): Change `vect' member from an in-line array to a pointer, to match my Nov 21 change in eval.c. --- libguile/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/debug.h b/libguile/debug.h index 99d526e1b..3d209bce3 100644 --- a/libguile/debug.h +++ b/libguile/debug.h @@ -124,7 +124,7 @@ typedef struct scm_debug_frame { struct scm_debug_frame *prev; long status; - scm_debug_info vect[1]; + scm_debug_info *vect; } scm_debug_frame; #ifndef USE_THREADS