Skip to content

Commit

Permalink
Tested and fixed on linux. Undid weird merge
Browse files Browse the repository at this point in the history
  • Loading branch information
guusw committed Sep 28, 2016
2 parents d1ca5a2 + 4f85a2a commit b33e5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shared/src/Linux/Files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static Vector<FileInfo> _ScanFiles(String rootFolder, String extFilter, bool rec
ret.Add(info);
}
}
} while(ent = readdir(dir) && (!interrupt || !*interrupt));
} while((ent = readdir(dir)) && (!interrupt || !*interrupt));
}

closedir(dir);
Expand Down

0 comments on commit b33e5ba

Please sign in to comment.