From: SeokYeon Hwang Date: Fri, 11 Jul 2014 05:02:29 +0000 (+0900) Subject: darwin: avoid "-Wmissing-selector-name" warning X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~228^2^2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ce1ca2acb904bba58ebc3c2f31d23daa3050470;p=sdk%2Femulator%2Fqemu.git darwin: avoid "-Wmissing-selector-name" warning Change-Id: I4b54bed18dd8a32c8b7d9f10a1b84f866f180418 Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/hw/pci/maru_camera_darwin_pci.m b/tizen/src/hw/pci/maru_camera_darwin_pci.m index d90b490952..46df90c330 100644 --- a/tizen/src/hw/pci/maru_camera_darwin_pci.m +++ b/tizen/src/hw/pci/maru_camera_darwin_pci.m @@ -183,11 +183,11 @@ static uint32_t get_sizeimage(uint32_t pixfmt, uint32_t width, uint32_t height) } - (MaruCameraDriver *)init; -- (int)startCapture:(int)width:(int)height; +- (int)startCapture:(int)width :(int)height; - (void)stopCapture; - (int)readFrame:(void *)video_buf; -- (int)setCaptureFormat:(int)width:(int)height:(int)pix_format; -- (int)getCaptureFormat:(int)width:(int)height:(int)pix_format; +- (int)setCaptureFormat:(int)width :(int)height :(int)pix_format; +- (int)getCaptureFormat:(int)width :(int)height :(int)pix_format; - (BOOL)deviceStatus; @end @@ -251,7 +251,7 @@ static uint32_t get_sizeimage(uint32_t pixfmt, uint32_t width, uint32_t height) } } -- (int)startCapture:(int)width:(int)height +- (int)startCapture:(int)width :(int)height { int ret = -1; @@ -327,7 +327,7 @@ static uint32_t get_sizeimage(uint32_t pixfmt, uint32_t width, uint32_t height) return -1; } -- (int)setCaptureFormat:(int)width:(int)height:(int)pix_format +- (int)setCaptureFormat:(int)width :(int)height :(int)pix_format { int ret = -1; NSDictionary *attributes; @@ -361,7 +361,7 @@ static uint32_t get_sizeimage(uint32_t pixfmt, uint32_t width, uint32_t height) return ret; } -- (int)getCaptureFormat:(int)width:(int)height:(int)pix_format +- (int)getCaptureFormat:(int)width :(int)height :(int)pix_format { return 0; } @@ -614,7 +614,7 @@ void marucam_device_start_preview(MaruCamState *state) param->errCode = EINVAL; return; } - + INFO("Starting preview ...\n"); [mcd->driver startCapture: width: height];