From: Jihoon Kim Date: Fri, 12 Feb 2016 08:48:43 +0000 (+0900) Subject: Constrain the scope of signal handler function X-Git-Tag: submit/tizen/20160217.080300~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a3813cbe8d7ee4608cde3fe4da07fd506dd3859;p=platform%2Fcore%2Fuifw%2Flibscl-core.git Constrain the scope of signal handler function Change-Id: I852bd47f807a01d8a438be7c98d85319717d0e99 --- diff --git a/src/sclcoreui-efl.cpp b/src/sclcoreui-efl.cpp index 9617a3f..996b741 100644 --- a/src/sclcoreui-efl.cpp +++ b/src/sclcoreui-efl.cpp @@ -312,7 +312,7 @@ int CSCLCoreUIEFL::get_screen_rotation_degree() return angle; } -void signal_handler(int sig) { +static void signal_handler(int sig) { elm_exit(); }