From: Jinhyung Choi Date: Thu, 24 Apr 2014 00:51:55 +0000 (+0900) Subject: misc: removed white space. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~386^2~23^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F71%2F19971%2F1;p=sdk%2Femulator%2Fqemu.git misc: removed white space. Change-Id: I7df994a0ac7383208e9648c790d5c1301305dfe3 Signed-off-by: Jinhyung Choi --- diff --git a/tizen/src/ecs/ecs.c b/tizen/src/ecs/ecs.c index 163c4cdcae..87d5be3c3e 100644 --- a/tizen/src/ecs/ecs.c +++ b/tizen/src/ecs/ecs.c @@ -842,4 +842,4 @@ fail: ERR("invalid message type : %d", master->type); ecs__master__free_unpacked(master, NULL); return false; -} +} diff --git a/tizen/src/maru_finger.c b/tizen/src/maru_finger.c index f8d55d7a10..b97a71e0f1 100644 --- a/tizen/src/maru_finger.c +++ b/tizen/src/maru_finger.c @@ -3,7 +3,7 @@ * * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved. * - * Contact: + * Contact: * GiWoong Kim * YeongKyoon Lee * HyunJun Son @@ -56,7 +56,7 @@ static void sdl_set_pixel(SDL_Surface *surface, int x, int y, Uint32 pixel) } /* -* This is an implementation of the Midpoint Circle Algorithm +* This is an implementation of the Midpoint Circle Algorithm * found on Wikipedia at the following link: * * http://en.wikipedia.org/wiki/Midpoint_circle_algorithm diff --git a/tizen/src/maru_finger.h b/tizen/src/maru_finger.h index 51d7f53200..61a32e854b 100644 --- a/tizen/src/maru_finger.h +++ b/tizen/src/maru_finger.h @@ -3,7 +3,7 @@ * * Copyright (C) 2011, 2012 Samsung Electronics Co., Ltd. All rights reserved. * - * Contact: + * Contact: * GiWoong Kim * YeongKyoon Lee * HyunJun Son diff --git a/tizen/src/osutil-darwin.c b/tizen/src/osutil-darwin.c index 7ad28109e6..7673619815 100644 --- a/tizen/src/osutil-darwin.c +++ b/tizen/src/osutil-darwin.c @@ -108,7 +108,7 @@ void make_vm_lock_os(void) } g_sprintf(shared_memory, "%s", tizen_target_img_path); INFO("shared memory key: %d, value: %s\n", base_port, (char *)shared_memory); - + if (shmdt(shared_memory) == -1) { ERR("shmdt failed\n"); perror("osutil-darwin: "); diff --git a/tizen/src/osutil.c b/tizen/src/osutil.c index 30115918df..07fc65d196 100644 --- a/tizen/src/osutil.c +++ b/tizen/src/osutil.c @@ -1,9 +1,9 @@ -/* +/* * Emulator * * Copyright (C) 2012, 2013 Samsung Electronics Co., Ltd. All rights reserved. * - * Contact: + * Contact: * SeokYeon Hwang * MunKyu Im * GiWoong Kim @@ -45,15 +45,15 @@ MULTI_DEBUG_CHANNEL(emulator, osutil); const char *pac_tempfile = ".autoproxy"; -inline size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream) -{ +inline size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream) +{ size_t written; written = fwrite(ptr, size, nmemb, stream); return written; -} +} -inline void download_url(char *url) -{ +inline void download_url(char *url) +{ CURL *curl; FILE *fp; CURLcode res; @@ -81,7 +81,7 @@ inline void download_url(char *url) } return; -} +} inline void remove_string(char *src, char *dst, const char *toremove) {