Module: wine Branch: master Commit: 3a64eb2c4ad1e874229a2e6c0968754787a86a28 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3a64eb2c4ad1e874229a2e6c09...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Tue Jun 30 00:21:08 2015 +0200
widl: Fix indentation in the EXPR_ADDRESSOF case in resolve_expression.
---
tools/widl/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/widl/expr.c b/tools/widl/expr.c index 7012382..0ada012 100644 --- a/tools/widl/expr.c +++ b/tools/widl/expr.c @@ -571,7 +571,7 @@ static struct expression_type resolve_expression(const struct expr_loc *expr_loc error_loc_info(&expr_loc->v->loc_info, "address-of operator applied to non-variable type in expression%s%s\n", expr_loc->attr ? " for attribute " : "", expr_loc->attr ? expr_loc->attr : ""); - result.is_variable = FALSE; + result.is_variable = FALSE; result.is_temporary = TRUE; result.type = type_new_pointer(RPC_FC_UP, result.type, NULL); break;