Commit 5c7fac9a authored by Pierre Ynard's avatar Pierre Ynard Committed by 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 6f1a7b41Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 5b61614c
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment