aboutsummaryrefslogtreecommitdiff
path: root/nix-rust/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nix-rust/src/lib.rs')
-rw-r--r--nix-rust/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix-rust/src/lib.rs b/nix-rust/src/lib.rs
index b6b0d746d..48952d8b9 100644
--- a/nix-rust/src/lib.rs
+++ b/nix-rust/src/lib.rs
@@ -5,7 +5,7 @@ mod tarfile;
pub use error::Error;
pub struct CBox<T> {
- ptr: *mut libc::c_void,
+ pub ptr: *mut libc::c_void,
phantom: std::marker::PhantomData<T>,
}