From 7df84e55920b5bbdc85db25a96ed19b393060e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=A9=E8=BE=BA=E7=BE=85=E3=82=A8=E3=83=AB=E3=83=8D?= =?UTF-8?q?=E3=82=B9=E3=83=88?= Date: Mon, 7 Apr 2014 11:00:45 +0900 Subject: [PATCH] Update string formatting for 64bit compatibility --- Source/Camera/NBUCameraView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Camera/NBUCameraView.m b/Source/Camera/NBUCameraView.m index a3fb906..6de11f2 100644 --- a/Source/Camera/NBUCameraView.m +++ b/Source/Camera/NBUCameraView.m @@ -572,8 +572,8 @@ - (void)takePicture:(id)sender UIImage * image = [UIImage imageWithData: [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer]]; - NBULogInfo(@"Captured jpeg image: %@ of size: %@ orientation: %ld", - image, NSStringFromCGSize(image.size), image.imageOrientation); + NBULogInfo(@"Captured jpeg image: %@ of size: %@ orientation: %@", + image, NSStringFromCGSize(image.size), @(image.imageOrientation)); #else // Mock simulator UIImage * image = _mockImage;