From aca9425c27e347714e43174447fa885973ff2b1c Mon Sep 17 00:00:00 2001 From: "agl@chromium.org" Date: Thu, 20 May 2010 14:53:19 +0000 Subject: 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 --- media/ffmpeg/file_protocol.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'media') 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(offset), whence); #endif } -- cgit v1.1