[vlc-commits] Fix typo (sys -> p_sys) after recent refactoring

Sebastian Roth git at videolan.org
Fri Jul 22 10:18:55 CEST 2016


vlc | branch: master | Sebastian Roth <sebastian.roth at gmail.com> | Fri Jul 22 10:56:57 2016 +0800| [ba48a9e88ffe3307d1f6e440fe538e303c1c113a] | committer: Thomas Guillem

Fix typo (sys -> p_sys) after recent refactoring

Signed-off-by: Thomas Guillem <thomas at gllm.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba48a9e88ffe3307d1f6e440fe538e303c1c113a
---

 modules/access/dsm/access.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/dsm/access.c b/modules/access/dsm/access.c
index 98463c6..44b6098 100644
--- a/modules/access/dsm/access.c
+++ b/modules/access/dsm/access.c
@@ -475,7 +475,7 @@ static ssize_t Read( access_t *p_access, void *p_buffer, size_t i_len )
  *****************************************************************************/
 static int Control( access_t *p_access, int i_query, va_list args )
 {
-    access_sys_t *sys = p_access->p_sys;
+    access_sys_t *p_sys = p_access->p_sys;
 
     switch( i_query )
     {



More information about the vlc-commits mailing list