[Title] fix compile error in Windows
authorSon Hyunjun <hj79.son@samsung.com>
Wed, 4 Apr 2012 11:26:17 +0000 (20:26 +0900)
committerSon Hyunjun <hj79.son@samsung.com>
Wed, 4 Apr 2012 11:26:17 +0000 (20:26 +0900)
[Type] Bugfix
[Module] Skin
[Priority] Minor
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]

Change-Id: I8bd40a9afc53312801350f9d2ff31dd2256bdb27

tizen/src/skin/maruskin_operation.c

index d0bdce4..7824768 100644 (file)
@@ -350,7 +350,7 @@ static void* run_timed_shutdown_thread( void* args ) {
     int i;
     for ( i = 0; i < TIMEOUT_FOR_SHUTDOWN; i++ ) {
 #ifdef _WIN32
-        Sleep( sleep_time );
+        Sleep( sleep_interval_time );
 #else
         usleep( sleep_interval_time * 1000 );
 #endif