diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-12-16 23:22:31 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-12-16 23:22:31 +0000 |
commit | 4387795a1168a2d763fca7812d46a65c6ff7af73 (patch) | |
tree | c06222987d0a7eeedc5e575961dc3c7d7d8b87c0 /libguile/debug.h | |
parent | 4aff3ae21344ace0c2aabb54143aae0ad18cabf5 (diff) | |
download | guile-4387795a1168a2d763fca7812d46a65c6ff7af73.tar.gz |
* 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.
Diffstat (limited to 'libguile/debug.h')
-rw-r--r-- | libguile/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |