summaryrefslogtreecommitdiff
path: root/src/camera.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/camera.c')
-rw-r--r--src/camera.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/camera.c b/src/camera.c
index 905d1d2..f0b5115 100644
--- a/src/camera.c
+++ b/src/camera.c
@@ -2442,7 +2442,7 @@ int camera_create(camera_device_e device, camera_h *camera)
goto ErrorExit;
}
- LOGD("camera create 0x%x", pc->remote_handle);
+ LOGD("camera create 0x%lx", pc->remote_handle);
*camera = (camera_h)pc;
@@ -2960,7 +2960,7 @@ int camera_cancel_focusing(camera_h camera)
return CAMERA_ERROR_INVALID_PARAMETER;
}
- LOGD("Enter, remote_handle : %x", pc->remote_handle);
+ LOGD("Enter, remote_handle : %lx", pc->remote_handle);
_camera_msg_send(api, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
@@ -4409,7 +4409,7 @@ int camera_attr_set_zoom(camera_h camera, int zoom)
return CAMERA_ERROR_INVALID_PARAMETER;
}
- LOGD("Enter, remote_handle : %x", pc->remote_handle);
+ LOGD("Enter, remote_handle : %lx", pc->remote_handle);
CAMERA_MSG_PARAM_SET(param, INT, zoom);
@@ -4434,7 +4434,7 @@ int camera_attr_set_af_mode(camera_h camera, camera_attr_af_mode_e mode)
return CAMERA_ERROR_INVALID_PARAMETER;
}
- LOGD("Enter, remote_handle : %x", pc->remote_handle);
+ LOGD("Enter, remote_handle : %lx", pc->remote_handle);
CAMERA_MSG_PARAM_SET(param, INT, set_mode);
@@ -4798,7 +4798,7 @@ int camera_attr_set_tag_software(camera_h camera, const char *software)
return CAMERA_ERROR_INVALID_PARAMETER;
}
- LOGD("Enter, remote_handle : %x", pc->remote_handle);
+ LOGD("Enter, remote_handle : %lx", pc->remote_handle);
CAMERA_MSG_PARAM_SET(param, STRING, software);
@@ -5662,7 +5662,7 @@ int camera_attr_foreach_supported_fps(camera_h camera, camera_attr_supported_fps
_camera_msg_send(api, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
- LOGD("Enter, handle :%x", pc->remote_handle);
+ LOGD("Enter, handle :%lx", pc->remote_handle);
return ret;
}