Remove `return' from `void' function.
authorLudovic Courtès <ludo@gnu.org>
Mon, 14 Dec 2009 23:38:50 +0000 (00:38 +0100)
committerLudovic Courtès <ludo@gnu.org>
Tue, 15 Dec 2009 00:01:17 +0000 (01:01 +0100)
* libguile/print.c (scm_print_symbol_name): Remove `return' statement.

libguile/print.c

index efb3081..8475d6a 100644 (file)
@@ -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.