diff options
Diffstat (limited to 'net/disk_cache/cache_util_posix.cc')
-rw-r--r-- | net/disk_cache/cache_util_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/disk_cache/cache_util_posix.cc b/net/disk_cache/cache_util_posix.cc index a6055fa..7eed9dd 100644 --- a/net/disk_cache/cache_util_posix.cc +++ b/net/disk_cache/cache_util_posix.cc @@ -64,8 +64,8 @@ bool DeleteCacheFile(const std::wstring& name) { return file_util::Delete(name, false); } -void WaitForPendingIO(int num_pending_io) { - if (num_pending_io) { +void WaitForPendingIO(int* num_pending_io) { + if (*num_pending_io) { NOTIMPLEMENTED(); } } |