Module: wine
Branch: master
Commit: 3bb04c88b7bbb262e7dcc77c2c031a2df037be6d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=3bb04c88b7bbb262e7dcc77c2…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Oct 31 12:41:49 2007 +0100
msvcrt: Silence FIXME about an unknown parameter that isn't used.
---
dlls/msvcrt/cpp.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvcrt/cpp.c b/dlls/msvcrt/cpp.c
index 045bab2..8328497 100644
--- a/dlls/msvcrt/cpp.c
+++ b/dlls/msvcrt/cpp.c
@@ -1103,13 +1103,13 @@ void* CDECL MSVCRT___RTDynamicCast(void *cppobj, int unknown,
TRACE("obj: %p unknown: %d src: %p %s dst: %p %s do_throw: %d)\n",
cppobj, unknown, src, dbgstr_type_info(src), dst, dbgstr_type_info(dst), do_throw);
- if (unknown) FIXME("Unknown parameter is non-zero: please report\n");
-
/* To cast an object at runtime:
* 1.Find out the true type of the object from the typeinfo at vtable[-1]
* 2.Search for the destination type in the class hierarchy
* 3.If destination type is found, return base object address + dest offset
* Otherwise, fail the cast
+ *
+ * FIXME: the unknown parameter doesn't seem to be used for anything
*/
__TRY
{