[vlc-commits] Fix a warning on uncommon architectures (hopefully)

Rémi Denis-Courmont git at videolan.org
Fri Mar 16 10:31:56 CET 2012


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Mar 16 11:31:38 2012 +0200| [1735628c3bccb969f3d6357f0c96a54e26b49417] | committer: Rémi Denis-Courmont

Fix a warning on uncommon architectures (hopefully)

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

 src/misc/cpu.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/misc/cpu.c b/src/misc/cpu.c
index da27170..e0a7a60 100644
--- a/src/misc/cpu.c
+++ b/src/misc/cpu.c
@@ -360,6 +360,9 @@ void vlc_CPU_dump (vlc_object_t *obj)
 #elif defined (__arm__)
     PRINT_CAPABILITY(CPU_CAPABILITY_NEON, "NEONv1");
 
+#else
+    (void) flags;
+
 #endif
 
 #if HAVE_FPU



More information about the vlc-commits mailing list