1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* 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.
This commit is contained in:
Jim Blandy 1996-12-16 23:22:31 +00:00
parent 4aff3ae213
commit 4387795a11

View file

@ -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