diff options
Diffstat (limited to 'o3d/import/cross/zip_archive.cc')
-rw-r--r-- | o3d/import/cross/zip_archive.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/import/cross/zip_archive.cc b/o3d/import/cross/zip_archive.cc index cd7f0455..946915c 100644 --- a/o3d/import/cross/zip_archive.cc +++ b/o3d/import/cross/zip_archive.cc @@ -863,7 +863,7 @@ bool ZipArchive::GetTempFileFromFile(const string &filename, #else // get just the final path component - int pos = filename.rfind('/'); + string::size_type pos = filename.rfind('/'); if (pos != string::npos) { // TODO : need to get "proper" temp dir for user // TODO : need to append GUID to filename |