diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-20 14:53:19 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-20 14:53:19 +0000 |
commit | aca9425c27e347714e43174447fa885973ff2b1c (patch) | |
tree | 638dbc7508ca2292723a7ce896f8d1f5a92c4550 /media | |
parent | 240ee4015c68678480c86f94d8642b7e8b5fd401 (diff) | |
download | chromium_src-aca9425c27e347714e43174447fa885973ff2b1c.zip chromium_src-aca9425c27e347714e43174447fa885973ff2b1c.tar.gz chromium_src-aca9425c27e347714e43174447fa885973ff2b1c.tar.bz2 |
Build fix.
I got lost in a sea of try bot messages and got confused about the
last patch's status.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/ffmpeg/file_protocol.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/ffmpeg/file_protocol.cc b/media/ffmpeg/file_protocol.cc index eb82d35..3acca44 100644 --- a/media/ffmpeg/file_protocol.cc +++ b/media/ffmpeg/file_protocol.cc @@ -56,10 +56,10 @@ int WriteContext(URLContext* h, unsigned char* buf, int size) { } int64 SeekContext(URLContext* h, int64 offset, int whence) { - COMPILE_ASSERT(sizeof(off_t) == 8, off_t_not_64_bit); #if defined(OS_WIN) return _lseeki64(GetHandle(h), static_cast<__int64>(offset), whence); #else + COMPILE_ASSERT(sizeof(off_t) == 8, off_t_not_64_bit); return lseek(GetHandle(h), static_cast<off_t>(offset), whence); #endif } |