From 274d4f64049c9ba5faa26b1dc8f805fc03b127d4 Mon Sep 17 00:00:00 2001 From: Hyongtaek Lim Date: Mon, 31 Aug 2015 11:12:30 +0900 Subject: [PATCH] fix error get display visible status Signed-off-by: Hyongtaek Lim Change-Id: I6fdd9673e4190a94c42fa6c1a3ccbd2f455d9d67 --- client/src/player2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/player2.c b/client/src/player2.c index 9759ec5..56987f4 100644 --- a/client/src/player2.c +++ b/client/src/player2.c @@ -1963,9 +1963,9 @@ int player_is_display_visible(player_h player, bool * pvisible) return __player_convert_error_code(ret,(char*)__FUNCTION__); else { if(value) - *pvisible = FALSE; - else *pvisible = TRUE; + else + *pvisible = FALSE; } #endif return ret; -- 2.7.4