Fix coding style 28/64128/2
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 30 Mar 2016 07:33:45 +0000 (16:33 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Wed, 30 Mar 2016 10:15:18 +0000 (03:15 -0700)
Change-Id: I63b08d833caa1b269be9e01075a883cef3a8724e

src/efl_util.c

index bf7385c2b472a197cb4cdbeea01277de16f61875..1b1ffb128237f2aebd6cca41a4e9f1c2e21f0eba 100644 (file)
@@ -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,};