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

shell32/tests: Avoid duplicate const.

parent 80d28abd
No related branches found
No related tags found
No related merge requests found
......@@ -394,7 +394,7 @@ static void test_dispatch_typeinfo(IDispatch *disp, REFIID *riid)
static void test_ShellFolderViewDual(void)
{
static const REFIID shelldisp_riids[] = {
static const IID *shelldisp_riids[] = {
&IID_IShellDispatch6,
&IID_IShellDispatch5,
&IID_IShellDispatch4,
......@@ -556,12 +556,12 @@ todo_wine {
ok(ret == 0, "got %d\n", ret);
}
else {
static const REFIID browser_riids[] = {
static const IID *browser_riids[] = {
&IID_IWebBrowser2,
&IID_NULL
};
static const REFIID viewdual_riids[] = {
static const IID *viewdual_riids[] = {
&IID_IShellFolderViewDual3,
&IID_NULL
};
......
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