diff options
author | Haejeong Kim <backto.kim@samsung.com> | 2016-01-28 17:02:12 +0900 |
---|---|---|
committer | Haejeong Kim <backto.kim@samsung.com> | 2016-01-28 17:02:12 +0900 |
commit | d52ab3b570a5362c1570e63eb54c2df84031a79e (patch) | |
tree | f72a3491a6d5c9678c7b0338df841ce5baabbf04 | |
parent | 54b9ee13d1b7cd9191536d3b456db5f8efea8a7e (diff) | |
download | libmedia-thumbnail-accepted/tizen/tv/20160129.084135.tar.gz libmedia-thumbnail-accepted/tizen/tv/20160129.084135.tar.bz2 libmedia-thumbnail-accepted/tizen/tv/20160129.084135.zip |
Apply tizen coding rulesubmit/tizen/20160129.061215accepted/tizen/wearable/20160129.084151accepted/tizen/tv/20160129.084135accepted/tizen/mobile/20160129.084117
Change-Id: I22fde0e7ecfac8187de3ef9dd2ceba4b67aea946
-rwxr-xr-x | src/ipc/media-thumb-ipc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ipc/media-thumb-ipc.c b/src/ipc/media-thumb-ipc.c index 773eb61..8227f1d 100755 --- a/src/ipc/media-thumb-ipc.c +++ b/src/ipc/media-thumb-ipc.c @@ -109,7 +109,7 @@ void __media_thumb_shutdown_channel(bool only_shutdown) SAFE_FREE(req->userData); SAFE_FREE(req); - if(g_manage_queue && len == 0) { + if (g_manage_queue && len == 0) { g_queue_free(g_manage_queue); g_manage_queue = NULL; } @@ -129,10 +129,10 @@ int __media_thumb_pop_req_queue(const char *path) } /* Check manage queue */ - if(g_manage_queue) { + if (g_manage_queue) { req_len = g_queue_get_length(g_manage_queue); - if(req_len > 0) + if (req_len > 0) _media_thumb_send_request(); } |