diff options
Diffstat (limited to 'libguile/kw.c')
-rw-r--r-- | libguile/kw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/kw.c b/libguile/kw.c index 58c7e48db..3bf6ba63a 100644 --- a/libguile/kw.c +++ b/libguile/kw.c @@ -63,13 +63,13 @@ free_kw (obj) #ifdef __STDC__ static int -prin_kw (SCM exp, SCM port, int writing) +prin_kw (SCM exp, SCM port, scm_print_state *pstate) #else static int -prin_kw (exp, port, writing) +prin_kw (exp, port, pstate) SCM exp; SCM port; - int writing; + scm_print_state *pstate; #endif { scm_gen_puts (scm_regular_string, ":", port); |