summaryrefslogtreecommitdiff
path: root/libguile/mallocs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/mallocs.c')
-rw-r--r--libguile/mallocs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/mallocs.c b/libguile/mallocs.c
index e086f228d..b2f48cdd8 100644
--- a/libguile/mallocs.c
+++ b/libguile/mallocs.c
@@ -1,6 +1,6 @@
/* classes: src_files */
-/* Copyright (C) 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1997 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -58,9 +58,9 @@ prinmalloc (exp, port, pstate)
SCM port;
scm_print_state *pstate;
{
- scm_gen_puts(scm_regular_string, "#<malloc ", port);
+ scm_puts("#<malloc ", port);
scm_intprint(SCM_CDR(exp), 16, port);
- scm_gen_putc('>', port);
+ scm_putc('>', port);
return 1;
}