summaryrefslogtreecommitdiff
path: root/io/event.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--io/event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/event.h b/io/event.h
index 2da3323..e17c333 100644
--- a/io/event.h
+++ b/io/event.h
@@ -9,7 +9,7 @@ struct event {
9 ctlreg reg; 9 ctlreg reg;
10 std::uint_fast32_t mask; 10 std::uint_fast32_t mask;
11 std::uint_fast32_t value; 11 std::uint_fast32_t value;
12 event(ctlreg reg, std::uint_fast32_t value, std::uint_fast32_t mask=~0) 12 event(ctlreg reg, std::uint_fast32_t value, std::uint_fast32_t mask=~(std::uint_fast32_t)0)
13 : reg(reg) 13 : reg(reg)
14 , mask(mask) 14 , mask(mask)
15 , value(value) 15 , value(value)