Skip to content
Snippets Groups Projects
Commit d0ddece8 authored by sedwards's avatar sedwards Committed by Alexandre Julliard
Browse files

rpcrt4: Correct the number of aguments for fill_method on unsupported architectures.

parent 5201c78b
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ static void fill_table(IUnknownVtbl *vtbl, void **methods, DWORD num)
#else /* __i386__ */
typedef struct {int dummy;} vtbl_method_t;
static void fill_table(IUnknownVtbl *vtbl, DWORD num)
static void fill_table(IUnknownVtbl *vtbl, void **methods, DWORD num)
{
ERR("delegated stubs are not supported on this architecture\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment