Commit 55a67c25 authored by hans@chromium.org's avatar hans@chromium.org

Remove extraneous braces around scalar initializer.

Drive-by Clang warning fix.

BUG=82385

Review URL: https://chromiumcodereview.appspot.com/15952003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202899 0039d316-1c4b-4281-b951-d872f2087c98
parent 77f3387b
...@@ -84,9 +84,7 @@ void ShowItemInFolderOnFileThread(const base::FilePath& full_path) { ...@@ -84,9 +84,7 @@ void ShowItemInFolderOnFileThread(const base::FilePath& full_path) {
if (FAILED(hr)) if (FAILED(hr))
return; return;
const ITEMIDLIST* highlight[] = { const ITEMIDLIST* highlight[] = { file_item };
{file_item},
};
hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight), hr = (*open_folder_and_select_itemsPtr)(dir_item, arraysize(highlight),
highlight, NULL); highlight, 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