osutil: add #ifdef, #endif 17/29317/2
authorMunkyu Im <munkyu.im@samsung.com>
Fri, 24 Oct 2014 06:21:59 +0000 (15:21 +0900)
committerMunkyu Im <munkyu.im@samsung.com>
Fri, 24 Oct 2014 06:55:22 +0000 (15:55 +0900)
This caused compilation error on Windows.
So surround with #ifdef and #endif

Change-Id: Idd42249fc26c9bb0c619505241be667a2253e88d
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
tizen/src/util/osutil.c

index d0780e9..eeef454 100644 (file)
@@ -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)