Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0448fe13 authored by Jim Shargo's avatar Jim Shargo
Browse files

CameraDeviceClient: replace %lu with PRIu64.

Bug: n/a
Flag: EXEMPT refactor
Test: compiles
Change-Id: Iaf7f98bf8d2082f8de58f6088d5d8c14ee9d1257
parent 0c32203c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1240,7 +1240,7 @@ binder::Status CameraDeviceClient::createStream(
        int i = 0;
        for (auto& surfaceKey : surfaceKeys) {
#if WB_LIBCAMERASERVICE_WITH_DEPENDENCIES
            ALOGV("%s: mStreamMap add surfaceKey %lu streamId %d, surfaceId %d",
            ALOGV("%s: mStreamMap add surfaceKey %" PRIu64 " streamId %d, surfaceId %d",
                  __FUNCTION__, surfaceKey, streamId, i);
#else
            ALOGV("%s: mStreamMap add surfaceKey %p streamId %d, surfaceId %d",
@@ -1981,8 +1981,8 @@ binder::Status CameraDeviceClient::finalizeOutputConfigurations(int32_t streamId
                     "Could not get the SurfaceKey");
            }
#if WB_LIBCAMERASERVICE_WITH_DEPENDENCIES
            ALOGV("%s: mStreamMap add surface_key %lu streamId %d, surfaceId %d", __FUNCTION__,
                    surfaceKey, streamId, consumerSurfaceIds[i]);
            ALOGV("%s: mStreamMap add surface_key %" PRIu64 " streamId %d, surfaceId %d",
                  __FUNCTION__, surfaceKey, streamId, consumerSurfaceIds[i]);
#else
            ALOGV("%s: mStreamMap add surface_key %p streamId %d, surfaceId %d", __FUNCTION__,
                    surfaceKey.get(), streamId, consumerSurfaceIds[i]);