media_library: fix crate path

merge-requests/7/merge
Alexandre Janniaux 2019-11-15 13:22:30 +01:00
parent 3061aaa977
commit 2f066ce170
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
// This file is part of vlc-rs.
// Licensed under the MIT license, see the LICENSE file.
use sys;
use ::{Instance, MediaList};
use crate::sys;
use crate::{Instance, MediaList};
pub struct MediaLibrary {
pub(crate) ptr: *mut sys::libvlc_media_library_t,