diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-07-24 23:09:28 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-07-24 23:09:28 +0000 |
commit | 16019956abbe61d3aee3264f0130b4319e45e177 (patch) | |
tree | 351de9c33a2c587f7fc9e82b3b5cc67b536a1e19 | |
parent | 3637134f141f5e078b2cb520624a4f8427c7b5f8 (diff) | |
download | guile-16019956abbe61d3aee3264f0130b4319e45e177.tar.gz |
* ioext.c (scm_redirect_port): Replaced scm_ptobfuns -->
scm_ptob_descriptor.
-rw-r--r-- | libguile/ioext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/ioext.c b/libguile/ioext.c index d798d0ddf..a18cb555d 100644 --- a/libguile/ioext.c +++ b/libguile/ioext.c @@ -337,7 +337,7 @@ scm_redirect_port (old, new) { scm_port *pt = SCM_PTAB_ENTRY (new); scm_port *old_pt = SCM_PTAB_ENTRY (old); - scm_ptobfuns *ptob = &scm_ptobs[SCM_PTOBNUM (new)]; + scm_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (new)]; /* must flush to old fdes. */ if (pt->rw_active == SCM_PORT_WRITE) |