Skip to content

Commit 782b93e

Browse files
fix cpp linting error
1 parent 23f4a1c commit 782b93e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/node_file.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3500,7 +3500,8 @@ static void CpSyncCopyDir(const FunctionCallbackInfo<Value>& args) {
35003500
auto dest_file_path_str = PathToString(dest_file_path);
35013501

35023502
if (filter_fn &&
3503-
!(*filter_fn)(dir_entry_path_str.c_str(), dest_file_path_str.c_str())) {
3503+
!(*filter_fn)(dir_entry_path_str.c_str(),
3504+
dest_file_path_str.c_str())) {
35043505
continue;
35053506
}
35063507

0 commit comments

Comments
 (0)