From ab33782cb3c491e4a2da81b7c48f93e259071041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 15 Dec 2009 00:38:50 +0100 Subject: [PATCH] Remove `return' from `void' function. * libguile/print.c (scm_print_symbol_name): Remove `return' statement. --- libguile/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/print.c b/libguile/print.c index efb30813d..8475d6afb 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -399,7 +399,7 @@ void scm_print_symbol_name (const char *str, size_t len, SCM port) { SCM symbol = scm_from_locale_symboln (str, len); - return scm_i_print_symbol_name (symbol, port); + scm_i_print_symbol_name (symbol, port); } /* Print generally. Handles both write and display according to PSTATE.