Skip to content

Commit

Permalink
widl: Fix indentation in the EXPR_ADDRESSOF case in resolve_expression.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeraldPfeifer authored and julliard committed Jun 30, 2015
1 parent 863f432 commit 3a64eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/widl/expr.c
Expand Up @@ -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;
Expand Down

0 comments on commit 3a64eb2

Please sign in to comment.