Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: import/cross/zip_archive.cc

Issue 159168: This fixes a number of things that are warnings in the Mac compiler.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: import/cross/zip_archive.cc
===================================================================
--- import/cross/zip_archive.cc (revision 21208)
+++ import/cross/zip_archive.cc (working copy)
@@ -863,7 +863,7 @@
#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

Powered by Google App Engine
This is Rietveld 408576698