diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 370dc4a08222..9c699a880075 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -304,7 +304,7 @@ extern {} // If/when libprim happens, this can be removed in favor of that pub enum Nullable { Null, - Some(T) + NotNull(T) } pub mod types {