Re: [PATCH v3 4/4] rust: sync: update integer types in CondVar

From: Alice Ryhl
Date: Fri Jan 05 2024 - 04:45:22 EST


On Thu, Jan 4, 2024 at 11:48 PM Boqun Feng <boqun.feng@xxxxxxxxx> wrote:
>
> On Thu, Jan 04, 2024 at 02:02:44PM +0000, Alice Ryhl wrote:
> [...]
> > -use core::ffi::c_long;
> > +use core::ffi::{c_int, c_long, c_uint};
>
> core::ffi::c_uint is not needed here. And
>
> use core::ptr;
>
> is missing (for the `ptr::mut_null()` below)

Oops, looks like I messed up this patch. Sorry about that.