Skip to content

Commit b5c155e

Browse files
committed
Linux compile fix
1 parent 21b03b6 commit b5c155e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shared/sdk/SharedUtil.File.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ std::vector < SString > SharedUtil::FindFiles ( const SString& strMatch, bool bF
682682
SString strAbsPath = strSearchDirectory + DirEntry->d_name;
683683
struct stat attrib;
684684
stat( strAbsPath, &attrib );
685-
MapInsert( sortMap, (uint64)attrib.st_mtime, DirEntry->d_name );
685+
MapInsert( sortMap, (uint64)attrib.st_mtime, SStringX( DirEntry->d_name ) );
686686
}
687687
else
688688
strResult.push_back ( DirEntry->d_name );

0 commit comments

Comments
 (0)