From 30e40dc89dd3718437e970123757435354ada338 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Fri, 18 Apr 2008 18:38:08 +1000 Subject: [PATCH] Shut up some warnings from gcc 4.3. --- lily/include/lily-guile.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/include/lily-guile.hh b/lily/include/lily-guile.hh index 2265e249c2..3028817998 100644 --- a/lily/include/lily-guile.hh +++ b/lily/include/lily-guile.hh @@ -101,7 +101,7 @@ inline bool ly_is_equal (SCM x, SCM y) } inline bool ly_scm2bool (SCM x) { return SCM_NFALSEP (x); } -inline char ly_scm2char (SCM x) { return SCM_CHAR (x); } +inline char ly_scm2char (SCM x) { return (char)SCM_CHAR (x); } inline SCM ly_bool2scm (bool x) { return SCM_BOOL (x); } inline SCM ly_append2 (SCM x1, SCM x2) -- 2.39.2