summaryrefslogtreecommitdiffstats
path: root/media/libstagefright
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-11-19 10:31:50 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-11-19 10:31:50 -0800
commit60d88f898219b08603548a953749e417e399df62 (patch)
tree882d418450cc19ec2a5176c4dc2536dd9f603b0d /media/libstagefright
parent5ab3435dff2ad1b3631cb58745b20483fc1db4d0 (diff)
parent7fe4ed1207fa587c65231f9a32374ae4b618d6c0 (diff)
downloadframeworks_av-60d88f898219b08603548a953749e417e399df62.zip
frameworks_av-60d88f898219b08603548a953749e417e399df62.tar.gz
frameworks_av-60d88f898219b08603548a953749e417e399df62.tar.bz2
Merge "Fix an artifact of going from off_t to off64_t"
Diffstat (limited to 'media/libstagefright')
-rw-r--r--media/libstagefright/NuCachedSource2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/NuCachedSource2.cpp b/media/libstagefright/NuCachedSource2.cpp
index 7f765ca..829ab20 100644
--- a/media/libstagefright/NuCachedSource2.cpp
+++ b/media/libstagefright/NuCachedSource2.cpp
@@ -465,7 +465,7 @@ status_t NuCachedSource2::seekInternal_l(off64_t offset) {
return OK;
}
- LOGI("new range: offset= %ld", offset);
+ LOGI("new range: offset= %lld", offset);
mCacheOffset = offset;