Fix KONA issue - Invalid log parameter 36/155136/1 accepted/tizen/unified/20171013.192847 submit/tizen/20171012.091106
authorHaesu Gwon <haesu.gwon@samsung.com>
Thu, 12 Oct 2017 06:45:24 +0000 (15:45 +0900)
committerHaesu Gwon <haesu.gwon@samsung.com>
Thu, 12 Oct 2017 06:45:24 +0000 (15:45 +0900)
[Version] 0.3.7
[Profile] Common
[Issue Type] Update
[Dependency module] N/A

Change-Id: I3589488e10d576a8fb3524f67b300acb73d923ab
Signed-off-by: Haesu Gwon <haesu.gwon@samsung.com>
packaging/capi-media-camera.spec
src/camera.c

index 2367835..6c4825b 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-media-camera
 Summary:    A Camera API
-Version:    0.3.6
+Version:    0.3.7
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index ba855cf..bcc0ede 100644 (file)
@@ -1319,7 +1319,7 @@ static void _camera_client_user_callback(camera_cb_info_s *cb_info, char *recv_m
 
                        muse_camera_msg_get(percent, recv_msg);
 
-                       LOGD("HDR progress - %d \%", percent);
+                       LOGD("HDR progress - %d %%", percent);
 
                        ((camera_attr_hdr_progress_cb)cb_info->user_cb[event])(percent, cb_info->user_data[event]);
                }
@@ -6394,7 +6394,7 @@ int camera_attr_get_pan_range(camera_h camera, int *min, int *max)
        muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PAN_RANGE;
 
        if (!pc || !pc->cb_info || !min || !max) {
-               LOGE("NULL pointer %p %p", pc, min, max);
+               LOGE("NULL pointer %p %p %p", pc, min, max);
                return CAMERA_ERROR_INVALID_PARAMETER;
        }