[vlc-commits] posix: fix warning

Rémi Denis-Courmont git at videolan.org
Fri Sep 7 11:29:14 CEST 2012


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Sep  7 00:10:07 2012 +0300| [df505697b39a6d34792b2cc84e3434bdd5ff3d7c] | committer: Rémi Denis-Courmont

posix: fix warning

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

 src/posix/thread.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/posix/thread.c b/src/posix/thread.c
index cc5381e..1514b80 100644
--- a/src/posix/thread.c
+++ b/src/posix/thread.c
@@ -828,7 +828,7 @@ int vlc_set_priority (vlc_thread_t th, int priority)
             return VLC_EGENERIC;
     }
 #else
-    (void) priority;
+    (void) th; (void) priority;
 #endif
     return VLC_SUCCESS;
 }



More information about the vlc-commits mailing list