Skip to content

Commit 7406ac8

Browse files
fix typo
1 parent e3a3695 commit 7406ac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/FileMetadataInitializer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ bool Snowflake::Client::FileMetadataInitializer::listFilesRecursive(const std::s
160160
if (!ret)
161161
{
162162
if (S_ISREG(fileStatus.st_mode)) {
163-
fileList.pushback(dirPath + dir_entry->d_name);
163+
fileList.push_back(dirPath + dir_entry->d_name);
164164
}
165165
else if (S_ISDIR(fileStatus.st_mode))
166166
{

0 commit comments

Comments
 (0)