From: Munkyu Im Date: Fri, 24 Oct 2014 06:21:59 +0000 (+0900) Subject: osutil: add #ifdef, #endif X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~629^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbec5ebd278a61f37e4eff86f0537aac22d25565;p=sdk%2Femulator%2Fqemu.git osutil: add #ifdef, #endif This caused compilation error on Windows. So surround with #ifdef and #endif Change-Id: Idd42249fc26c9bb0c619505241be667a2253e88d Signed-off-by: Munkyu Im --- diff --git a/tizen/src/util/osutil.c b/tizen/src/util/osutil.c index d0780e9a29..eeef454e98 100644 --- a/tizen/src/util/osutil.c +++ b/tizen/src/util/osutil.c @@ -43,7 +43,9 @@ MULTI_DEBUG_CHANNEL(emulator, osutil); +#ifndef CONFIG_WIN32 static sdcard_info info; +#endif const char *pac_tempfile = ".autoproxy"; inline size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream)