From 9ec5d758e95d0f09f1f7ab8c895e82c3bec4c15d Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Wed, 30 Mar 2016 16:33:45 +0900 Subject: [PATCH] Fix coding style Change-Id: I63b08d833caa1b269be9e01075a883cef3a8724e --- src/efl_util.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/efl_util.c b/src/efl_util.c index bf7385c..1b1ffb1 100644 --- a/src/efl_util.c +++ b/src/efl_util.c @@ -1548,7 +1548,8 @@ _efl_util_screenshot_get_port(Display *dpy, unsigned int id, Window win) return -1; } -static int _efl_util_screenshot_get_best_size(Display *dpy, int port, int width, int height, unsigned int *best_width, unsigned int *best_height) +static int +_efl_util_screenshot_get_best_size(Display *dpy, int port, int width, int height, unsigned int *best_width, unsigned int *best_height) { XErrorHandler old_handler = NULL; @@ -1571,7 +1572,8 @@ static int _efl_util_screenshot_get_best_size(Display *dpy, int port, int width, } #endif -API efl_util_screenshot_h efl_util_screenshot_initialize(int width, int height) +API efl_util_screenshot_h +efl_util_screenshot_initialize(int width, int height) { #if X11 efl_util_screenshot_h screenshot = NULL; @@ -1768,7 +1770,8 @@ fail_init: return NULL; } -API int efl_util_screenshot_deinitialize(efl_util_screenshot_h screenshot) +API int +efl_util_screenshot_deinitialize(efl_util_screenshot_h screenshot) { #if X11 if (!screenshot) @@ -1834,7 +1837,8 @@ API int efl_util_screenshot_deinitialize(efl_util_screenshot_h screenshot) } -API tbm_surface_h efl_util_screenshot_take_tbm_surface(efl_util_screenshot_h screenshot) +API tbm_surface_h +efl_util_screenshot_take_tbm_surface(efl_util_screenshot_h screenshot) { #if X11 XEvent ev = {0,}; -- 2.7.4