Module: wine Branch: master Commit: 0a065cb4bdd153c4a4f331340ea7a78050c33429 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0a065cb4bdd153c4a4f331340e...
Author: Francois Gouget fgouget@free.fr Date: Tue Dec 6 17:38:21 2011 +0100
jscript: Make interp_expression_eval() static.
---
dlls/jscript/engine.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index 8e5e5f1..b40cd75 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -3407,7 +3407,7 @@ OP_LIST #undef X };
-HRESULT interp_expression_eval(script_ctx_t *ctx, expression_t *expr, DWORD flags, jsexcept_t *ei, exprval_t *ret) +static HRESULT interp_expression_eval(script_ctx_t *ctx, expression_t *expr, DWORD flags, jsexcept_t *ei, exprval_t *ret) { exec_ctx_t *exec_ctx = ctx->exec_ctx; unsigned prev_ip, prev_top;