summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/filterconstraint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/filterconstraint.cpp b/core/filterconstraint.cpp
index 6922f1530..54654457f 100644
--- a/core/filterconstraint.cpp
+++ b/core/filterconstraint.cpp
@@ -1059,7 +1059,7 @@ static bool check_year_range(const filter_constraint &c, const struct dive *d)
static bool check_multiple_choice(const filter_constraint &c, int v)
{
- bool has_bit = c.data.multiple_choice & (1 << v);
+ bool has_bit = c.data.multiple_choice & (1ULL << v);
return has_bit != c.negate;
}