diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-11 15:08:46 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-11 15:08:46 +0000 |
commit | 1a0617aaea56767d1f8337061ec472ee37b2865d (patch) | |
tree | f57c2b39f11ab86f660417196177ab957faab3b4 /net/tools | |
parent | 16acb162ec85f5ce428eb5c9f3b43ff65b6200ab (diff) | |
download | chromium_src-1a0617aaea56767d1f8337061ec472ee37b2865d.zip chromium_src-1a0617aaea56767d1f8337061ec472ee37b2865d.tar.gz chromium_src-1a0617aaea56767d1f8337061ec472ee37b2865d.tar.bz2 |
Missed a spot during the FilePathing.
Review URL: http://codereview.chromium.org/13386
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools')
-rw-r--r-- | net/tools/dump_cache/dump_files.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/dump_cache/dump_files.cc b/net/tools/dump_cache/dump_files.cc index 4425d61..e5d6f27 100644 --- a/net/tools/dump_cache/dump_files.cc +++ b/net/tools/dump_cache/dump_files.cc @@ -280,7 +280,7 @@ int DumpHeaders(const std::wstring input_path) { file_util::FileEnumerator iter(FilePath::FromWStringHack(input_path), false, file_util::FileEnumerator::FILES, pattern); for (std::wstring file = iter.Next().ToWStringHack(); !file.empty(); - file = iter.Next()) { + file = iter.Next().ToWStringHack()) { DumpBlockHeader(file); } |