From 807047d07b1ece69884703fadf506368e3657d30 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Wed, 24 Aug 2016 17:50:49 -0400 Subject: [PATCH] fix typo in ##18205 --- src/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast.c b/src/ast.c index 0956723653b1c..fb24abe2cf281 100644 --- a/src/ast.c +++ b/src/ast.c @@ -195,7 +195,7 @@ value_t fl_invoke_julia_macro(fl_context_t *fl_ctx, value_t *args, uint32_t narg // arguments when lowering; should agree with broadcast.jl on what is a // scalar. When in doubt, return false, since this is only an optimization. // (TODO: update after #16966 is resolved.) -int fl_julia_scalar(fl_context_t *fl_ctx, value_t *args, uint32_t nargs) +value_t fl_julia_scalar(fl_context_t *fl_ctx, value_t *args, uint32_t nargs) { argcount(fl_ctx, "julia-scalar?", nargs, 1); if (fl_isnumber(fl_ctx, args[0]))