Fix use of ImportNotifier

Somehow when updating to this API, I missed the call to `successful`.

This doesn't seem to make a difference for most clients since
`create_immed` is normally used. But should correct anything using
`create`.
This commit is contained in:
Ian Douglas Scott 2023-12-14 10:23:38 -08:00 committed by Victoria Brekenfeld
parent a8b401b11d
commit 6eb8b82440

View file

@ -20,6 +20,8 @@ impl DmabufHandler for State {
) {
if self.backend.dmabuf_imported(global, dmabuf).is_err() {
import_notifier.failed();
} else {
let _ = import_notifier.successful::<State>();
}
}
}