Skip to content

Commit c1e5ac1

Browse files
committed
xkbcomp: fix pointer value for FreeStmt
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1 parent badb428 commit c1e5ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/xkbcomp/ast-build.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ ExprAppendMultiKeysymList(ExprDef *expr, ExprDef *append)
240240
darray_append(expr->keysym_list.symsNumEntries, numEntries);
241241
darray_concat(expr->keysym_list.syms, append->keysym_list.syms);
242242

243-
FreeStmt((ParseCommon *) &append);
243+
FreeStmt((ParseCommon *) append);
244244

245245
return expr;
246246
}

0 commit comments

Comments
 (0)