Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: simplify format in node_file.cc #33660

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup!
Co-authored-by: Yash Ladha <[email protected]>
himself65 and yashLadha authored May 31, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 3de1129742bed52419d7791dccffcf38161b1851
2 changes: 1 addition & 1 deletion src/node_file.cc
Original file line number Diff line number Diff line change
@@ -721,7 +721,7 @@ void AfterScanDir(uv_fs_t* req) {
int r;
std::vector<Local<Value>> name_v;

while (true) {
for (;;) {
uv_dirent_t ent;

r = uv_fs_scandir_next(req, &ent);