From: jinhyung.jo Date: Mon, 5 Aug 2013 03:18:41 +0000 (+0900) Subject: check_cam : added a missing include file. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~846^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7390af1f35257567dc19a842348f3fa12e0aa0b;p=sdk%2Femulator%2Fqemu.git check_cam : added a missing include file. For removing a compiler warning on Linux. Change-Id: I8cb767e5b63feeace570179598e5cc7c9b360e5f Signed-off-by: Jinhyung Jo --- diff --git a/tizen/src/check_cam.c b/tizen/src/check_cam.c index 0846527651..90a24a3b20 100644 --- a/tizen/src/check_cam.c +++ b/tizen/src/check_cam.c @@ -27,9 +27,10 @@ * */ +#include + #ifdef _WIN32 /* Windows implement */ -#include #include #define CINTERFACE #define COBJMACROS @@ -183,7 +184,7 @@ static int check_cam(void) #elif __linux /* Linux implement */ -#include +#include #include #include #include @@ -237,6 +238,7 @@ static int check_cam(void) /* MacOS, Now, not implemented. */ static int check_cam(void) { + fprintf(stdout, "[Webcam] Not implemented.\n"); return 1; }