Fix check for QUERY_SET_MAX_QUERIES was using >= instead of >

This commit is contained in:
Aron Granberg
2021-06-27 17:08:49 +02:00
parent cfda54f108
commit 6416bc5b68

View File

@@ -2270,7 +2270,7 @@ impl<A: HalApi> Device<A> {
return Err(Error::ZeroCount);
}
if desc.count >= wgt::QUERY_SET_MAX_QUERIES {
if desc.count > wgt::QUERY_SET_MAX_QUERIES {
return Err(Error::TooManyQueries {
count: desc.count,
maximum: wgt::QUERY_SET_MAX_QUERIES,