Update flow/Platform.actor.cpp

Co-authored-by: A.J. Beamon <ajbeamon@users.noreply.github.com>
This commit is contained in:
David Youngworth 2020-06-22 10:28:43 -04:00 committed by GitHub
parent 333cb96fe4
commit 0c4fdbb69a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2417,7 +2417,7 @@ bool acceptDirectory( FILE_ATTRIBUTE_DATA fileAttributes, std::string const& nam
}
ACTOR Future<vector<std::string>> findFiles( std::string directory, std::string extension,
bool directoryOnly, bool async) {
bool directoryOnly, bool async) {
INJECT_FAULT( platform_error, "findFiles" );
state vector<std::string> result;
state int64_t tsc_begin = __rdtsc();