]> git.sesse.net Git - vlc/commitdiff
Fix LIBVLC_VERSION_INT macro.
authorAlexey Sokolov <alexey@alexeysokolov.co.cc>
Sat, 22 Oct 2011 11:10:36 +0000 (18:10 +0700)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 22 Oct 2011 16:11:44 +0000 (18:11 +0200)
LIBVLC_VERSION_REVISION was ignored.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
include/vlc/libvlc_version.h.in

index 61518f7fb7c4c53bf398b1649a72685c3f893ef8..d282b666773827799174046f50c42f0094a81a00 100644 (file)
@@ -50,6 +50,6 @@
 /** LibVLC full version as a single integer (for comparison) */
 # define LIBVLC_VERSION_INT \
          LIBVLC_VERSION(LIBVLC_VERSION_MAJOR, LIBVLC_VERSION_MINOR, \
-                        LIBVLC_VERSION_EXTRA, LIBVLC_VERSION_EXTRA)
+                        LIBVLC_VERSION_REVISION, LIBVLC_VERSION_EXTRA)
 
 #endif