diff options
author | James Dong <jdong@google.com> | 2011-11-15 17:14:34 -0800 |
---|---|---|
committer | James Dong <jdong@google.com> | 2011-11-15 17:14:34 -0800 |
commit | bcf37299b8e12307f37f71af3afaf72f9a8650d5 (patch) | |
tree | 670720540751dc01f2eb7889699b26cbee933322 | |
parent | 392e1b8bfad0f58bc8643716643bdd7d806129fd (diff) | |
download | device_samsung_crespo-bcf37299b8e12307f37f71af3afaf72f9a8650d5.zip device_samsung_crespo-bcf37299b8e12307f37f71af3afaf72f9a8650d5.tar.gz device_samsung_crespo-bcf37299b8e12307f37f71af3afaf72f9a8650d5.tar.bz2 |
Fix broken build due to transition to ALOGV instead of LOGV
Change-Id: Ie2412b58f58e7989fc972cc20c3db334ca56e22d
-rwxr-xr-x | libcamera/SecCameraHWInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcamera/SecCameraHWInterface.cpp b/libcamera/SecCameraHWInterface.cpp index 0c320e2..f67951a 100755 --- a/libcamera/SecCameraHWInterface.cpp +++ b/libcamera/SecCameraHWInterface.cpp @@ -402,7 +402,7 @@ status_t CameraHardwareSec::setPreviewWindow(preview_stream_ops *w) int hal_pixel_format = HAL_PIXEL_FORMAT_YV12; const char *str_preview_format = mParameters.getPreviewFormat(); - LOGV("%s: preview format %s", __func__, str_preview_format); + ALOGV("%s: preview format %s", __func__, str_preview_format); if (w->set_usage(w, GRALLOC_USAGE_SW_WRITE_OFTEN)) { LOGE("%s: could not set usage on gralloc buffer", __func__); |