summaryrefslogtreecommitdiffstats
path: root/media/libstagefright
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-11-19 10:08:23 -0800
committerAndreas Huber <andih@google.com>2010-11-19 10:08:23 -0800
commit7fe4ed1207fa587c65231f9a32374ae4b618d6c0 (patch)
treed08e65e7a8d73045f1d4bf240fefa7c665dc6a3e /media/libstagefright
parentb9ff444a7eaf7ffd43970c0477110c6808bd4a7c (diff)
downloadframeworks_av-7fe4ed1207fa587c65231f9a32374ae4b618d6c0.zip
frameworks_av-7fe4ed1207fa587c65231f9a32374ae4b618d6c0.tar.gz
frameworks_av-7fe4ed1207fa587c65231f9a32374ae4b618d6c0.tar.bz2
Fix an artifact of going from off_t to off64_t
Change-Id: I999fb60a290f9b2db5b73bf926392c8f4e1b7829
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;