diff options
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1493,7 +1493,7 @@ ActionsInit(void) { if (!actionsInitialized) { - bzero((char *) &constTrue, sizeof(constTrue)); + bzero(&constTrue, sizeof(constTrue)); constTrue = (ExprDef) { .common.stmtType = StmtExpr, .common.next = NULL, @@ -1501,7 +1501,7 @@ ActionsInit(void) .type = TypeBoolean, .value.str = XkbInternAtom(NULL, "true", False) }; - bzero((char *) &constFalse, sizeof(constFalse)); + bzero(&constFalse, sizeof(constFalse)); constFalse = (ExprDef) { .common.stmtType = StmtExpr, .common.next = NULL, |