summaryrefslogtreecommitdiff
path: root/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'action.c')
-rw-r--r--action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/action.c b/action.c
index c6ff547..7c8074a 100644
--- a/action.c
+++ b/action.c
@@ -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,