summaryrefslogtreecommitdiff
path: root/guile.c
diff options
context:
space:
mode:
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 07a2147..499585c 100644
--- a/guile.c
+++ b/guile.c
@@ -115,7 +115,7 @@ internal_guile_eval (void *arg)
/* This is the function registered with make */
static char *
-func_guile (const char *funcname UNUSED, int argc UNUSED, char **argv)
+func_guile (const char *funcname UNUSED, unsigned int argc UNUSED, char **argv)
{
static int init = 0;
@@ -140,7 +140,7 @@ int
guile_gmake_setup (const gmk_floc *flocp UNUSED)
{
/* Create a make function "guile". */
- gmk_add_function ("guile", func_guile, 0, 1, 1);
+ gmk_add_function ("guile", func_guile, 0, 1, GMK_FUNC_DEFAULT);
return 1;
}