Skip to content

Commit 849b848

Browse files
fix cpp linting error
1 parent 3a0d042 commit 849b848

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node_file.cc

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

35193519
if (filter_fn &&
3520-
!(*filter_fn)(dir_entry_path_str.c_str(), dest_file_path_str.c_str())) {
3520+
!(*filter_fn)(dir_entry_path_str.c_str(),
3521+
dest_file_path_str.c_str())) {
35213522
continue;
35223523
}
35233524

0 commit comments

Comments
 (0)