From fbec5ebd278a61f37e4eff86f0537aac22d25565 Mon Sep 17 00:00:00 2001 From: Munkyu Im Date: Fri, 24 Oct 2014 15:21:59 +0900 Subject: [PATCH] osutil: add #ifdef, #endif This caused compilation error on Windows. So surround with #ifdef and #endif Change-Id: Idd42249fc26c9bb0c619505241be667a2253e88d Signed-off-by: Munkyu Im --- tizen/src/util/osutil.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tizen/src/util/osutil.c b/tizen/src/util/osutil.c index d0780e9..eeef454 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) -- 2.7.4