diff options
author | Alex Ray <aray@google.com> | 2013-05-24 15:41:53 -0700 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-05-28 20:19:07 -0700 |
commit | 608cff22d70a0eabb7e01ef39f13b4d6db5ba48a (patch) | |
tree | 2c3c695c094c296f8297c8035857db98468396e2 | |
parent | 8bae43ae86b9942892980c3c01bff5c812b1db7f (diff) | |
download | frameworks_av-608cff22d70a0eabb7e01ef39f13b4d6db5ba48a.zip frameworks_av-608cff22d70a0eabb7e01ef39f13b4d6db5ba48a.tar.gz frameworks_av-608cff22d70a0eabb7e01ef39f13b4d6db5ba48a.tar.bz2 |
libcameraservice: missing argument when logging
Change-Id: I6f3da400f8f47a387968b9da4ee7cd8e0c9dea70
-rw-r--r-- | services/camera/libcameraservice/camera2/JpegCompressor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/camera/libcameraservice/camera2/JpegCompressor.cpp b/services/camera/libcameraservice/camera2/JpegCompressor.cpp index c9af71e..2f0c67d 100644 --- a/services/camera/libcameraservice/camera2/JpegCompressor.cpp +++ b/services/camera/libcameraservice/camera2/JpegCompressor.cpp @@ -210,7 +210,8 @@ boolean JpegCompressor::jpegEmptyOutputBuffer(j_compress_ptr /*cinfo*/) { return true; } -void JpegCompressor::jpegTermDestination(j_compress_ptr /*cinfo*/) { +void JpegCompressor::jpegTermDestination(j_compress_ptr cinfo) { + (void) cinfo; // TODO: clean up ALOGV("%s", __FUNCTION__); ALOGV("%s: Done writing JPEG data. %d bytes left in buffer", __FUNCTION__, cinfo->dest->free_in_buffer); |