Fix a typo in write_function_stubs.

svn path=/trunk/; revision=14250
This commit is contained in:
Filip Navara 2005-03-21 08:43:01 +00:00
parent 07647a0b62
commit e5d49d1493
2 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,11 @@
ChangeLog
2005-03-21 navaraf
tools/widl/client.c
Fix a typo in write_function_stubs.
2005-03-20 navaraf
tools/widl/client.c

View file

@ -817,7 +817,7 @@ static void write_function_stubs(type_t *iface)
print_client("(PMIDL_STUB_MESSAGE)&_StubMsg,\n");
print_client("_StubMsg.BufferLength,\n");
if (implicit_handle || explicit_handle)
print_client("%_Handle);\n");
print_client("_Handle);\n");
else
print_client("%s__MIDL_AutoBindHandle);\n", iface->name);
indent--;