Skip to content

Commit 8664454

Browse files
committed
Fix cpplint warning
1 parent a9c7209 commit 8664454

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

atom/browser/web_dialog_helper.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,14 @@ void WebDialogHelper::RunFileChooser(content::WebContents* web_contents,
6161
params.default_file_name,
6262
file_dialog::Filters(),
6363
flags,
64-
&paths))
64+
&paths)) {
6565
for (auto& path : paths) {
6666
content::FileChooserFileInfo info;
6767
info.file_path = path;
6868
info.display_name = path.BaseName().value();
6969
result.push_back(info);
7070
}
71+
}
7172
}
7273

7374
web_contents->GetRenderViewHost()->FilesSelectedInChooser(

0 commit comments

Comments
 (0)