diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-19 19:47:42 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-19 19:47:42 +0000 |
commit | f44bb385a24110f16d1f20b8caece83f70efa25b (patch) | |
tree | 3a54512ece572155c1572c13f65cc0f810ae82f2 /net/disk_cache/storage_block-inl.h | |
parent | 0b0bf61ec44f91d6e31fad7b002700632e6f9952 (diff) | |
download | chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.zip chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.tar.gz chromium_src-f44bb385a24110f16d1f20b8caece83f70efa25b.tar.bz2 |
Fix up warnings in net/
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1048 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/storage_block-inl.h')
-rw-r--r-- | net/disk_cache/storage_block-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/storage_block-inl.h b/net/disk_cache/storage_block-inl.h index 08ade9a..6dfe025 100644 --- a/net/disk_cache/storage_block-inl.h +++ b/net/disk_cache/storage_block-inl.h @@ -38,7 +38,7 @@ namespace disk_cache { template<typename T> StorageBlock<T>::StorageBlock(MappedFile* file, Addr address) - : file_(file), address_(address), data_(NULL), modified_(false), + : data_(NULL), file_(file), address_(address), modified_(false), own_data_(false), extended_(false) { if (address.num_blocks() > 1) extended_ = true; |