]> git.sesse.net Git - vlc/commitdiff
Win32: remove uneeded %z hack
authorPierre Ynard <linkfanel@yahoo.fr>
Mon, 9 Mar 2009 11:19:10 +0000 (12:19 +0100)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 10 Mar 2009 16:06:34 +0000 (18:06 +0200)
Since we now have a general work around, this hack is not needed
anymore. This reverts commit 6f1a7b41f0f2175ceb1dd399b1ded5e30ffe704b

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
src/modules/modules.c

index 476809e4c6ac9727b4e536cecc05a860c03323ee..db0fe4627bb3f22a611cf58d727930218f8f9220 100644 (file)
@@ -555,14 +555,8 @@ found_shortcut:
 
     /* Sort candidates by descending score */
     qsort (p_list, count, sizeof (p_list[0]), modulecmp);
-#ifdef WIN32
-    /* FIXME: Remove this hack after finding a general solution for %z's */
-    msg_Dbg( p_this, "looking for %s module: %u candidate%s", psz_capability,
-             count, count == 1 ? "" : "s" );
-#else
     msg_Dbg( p_this, "looking for %s module: %zu candidate%s", psz_capability,
              count, count == 1 ? "" : "s" );
-#endif
 
     /* Parse the linked list and use the first successful module */
     p_module = NULL;