summaryrefslogtreecommitdiff
path: root/test-suite/standalone/test-scm-c-read.c
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/standalone/test-scm-c-read.c')
-rw-r--r--test-suite/standalone/test-scm-c-read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/standalone/test-scm-c-read.c b/test-suite/standalone/test-scm-c-read.c
index 7850f3447..c4dbf6251 100644
--- a/test-suite/standalone/test-scm-c-read.c
+++ b/test-suite/standalone/test-scm-c-read.c
@@ -43,7 +43,7 @@ struct custom_port
/* Return a new port of type PORT_TYPE. */
static inline SCM
-make_port (scm_t_bits port_type)
+make_port (scm_t_port_type *port_type)
{
struct custom_port *stream = scm_gc_typed_calloc (struct custom_port);
@@ -88,7 +88,7 @@ static void *
do_start (void *arg)
{
SCM port;
- scm_t_bits port_type;
+ scm_t_port_type *port_type;
char buffer[PORT_BUFFER_SIZE + (PORT_BUFFER_SIZE / 2)];
size_t read, last_read;