ceph / ceph-rust

Rust-lang interface to Ceph.
Apache License 2.0
96 stars 43 forks source link

Fix deprecation warnings #42

Closed dae closed 5 years ago

dae commented 5 years ago

fixes a bunch of warnings that appear when compiling with latest libc 0.2.x.

eg warning: use of deprecated item 'libc::int64_t': Use i64 instead. --> src/rados.rs:330:53 | 330 | pub fn rados_ioctx_get_id(io: rados_ioctx_t) -> int64_t; | ^^^^^^^

cholcombe973 commented 5 years ago

🎉 Thanks for doing this!