diff options
Diffstat (limited to 'libguile/async.c')
-rw-r--r-- | libguile/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/async.c b/libguile/async.c index 4776f1137..739b4c29b 100644 --- a/libguile/async.c +++ b/libguile/async.c @@ -302,13 +302,13 @@ scm_deliver_signal (num) #ifdef __STDC__ static int -print_async (SCM exp, SCM port, int writing) +print_async (SCM exp, SCM port, scm_print_state *pstate) #else static int -print_async (exp, port, writing) +print_async (exp, port, pstate) SCM exp; SCM port; - int writing; + scm_print_state *pstate; #endif { scm_gen_puts (scm_regular_string, "#<async ", port); |