[vlc-devel] commit: Win32: remove uneeded %z hack (Pierre Ynard )
git version control
git at videolan.org
Tue Mar 10 17:06:55 CET 2009
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Mar 9 12:19:10 2009 +0100| [5c7fac9ae6fd82f49632ef8afb7a285b032b7418] | committer: Rémi Denis-Courmont
Win32: remove uneeded %z hack
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 at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5c7fac9ae6fd82f49632ef8afb7a285b032b7418
---
src/modules/modules.c | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/src/modules/modules.c b/src/modules/modules.c
index 476809e..db0fe46 100644
--- a/src/modules/modules.c
+++ b/src/modules/modules.c
@@ -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;
More information about the vlc-devel
mailing list