summaryrefslogtreecommitdiff
path: root/guile.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-09-22 17:10:35 -0400
committerPaul Smith <psmith@gnu.org>2013-09-22 17:10:35 -0400
commit8a3655751fc41aa04cfd69fd9c9803df0e915a72 (patch)
tree3819a5ed9b0d36f7a586ebe0011a6584832d1aba /guile.c
parent1a1624b03ebf0f520758d670545e97867ff1a799 (diff)
downloadmake-8a3655751fc41aa04cfd69fd9c9803df0e915a72.tar.gz
Use explicit cast between void* and pointer-to-function.
Diffstat (limited to 'guile.c')
-rw-r--r--guile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/guile.c b/guile.c
index 20e58d4b..9c9bf5c4 100644
--- a/guile.c
+++ b/guile.c
@@ -72,10 +72,10 @@ guile_define_module (void *data UNUSED)
#include "gmk-default.h"
/* Register a subr for GNU make's eval capability. */
- scm_c_define_gsubr ("gmk-expand", 1, 0, 0, guile_expand_wrapper);
+ scm_c_define_gsubr ("gmk-expand", 1, 0, 0, (scm_t_subr) guile_expand_wrapper);
/* Register a subr for GNU make's eval capability. */
- scm_c_define_gsubr ("gmk-eval", 1, 0, 0, guile_eval_wrapper);
+ scm_c_define_gsubr ("gmk-eval", 1, 0, 0, (scm_t_subr) guile_eval_wrapper);
/* Define the rest of the module. */
scm_c_eval_string (GUILE_module_defn);