From 7e09da35b622a4a98ac0de1acc9743098569f2ad Mon Sep 17 00:00:00 2001
From: Alexandre Janniaux <alexandre.janniaux@gmail.com>
Date: Fri, 15 Nov 2019 13:22:51 +0100
Subject: [PATCH] media_list: fix crate path

---
 src/media_list.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/media_list.rs b/src/media_list.rs
index 2b84125..c6e2f5b 100644
--- a/src/media_list.rs
+++ b/src/media_list.rs
@@ -2,8 +2,8 @@
 // This file is part of vlc-rs.
 // Licensed under the MIT license, see the LICENSE file.
 
-use sys;
-use ::{Instance, Media, EventManager};
+use crate::sys;
+use crate::{Instance, Media, EventManager};
 
 pub struct MediaList {
     pub(crate) ptr: *mut sys::libvlc_media_list_t,