misc: removed white space. 71/19971/1
authorJinhyung Choi <jinhyung2.choi@samsung.com>
Thu, 24 Apr 2014 00:51:55 +0000 (09:51 +0900)
committerJinhyung Choi <jinhyung2.choi@samsung.com>
Thu, 24 Apr 2014 00:51:55 +0000 (09:51 +0900)
Change-Id: I7df994a0ac7383208e9648c790d5c1301305dfe3
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
tizen/src/ecs/ecs.c
tizen/src/maru_finger.c
tizen/src/maru_finger.h
tizen/src/osutil-darwin.c
tizen/src/osutil.c

index 163c4cd..87d5be3 100644 (file)
@@ -842,4 +842,4 @@ fail:
     ERR("invalid message type : %d", master->type);
     ecs__master__free_unpacked(master, NULL);
     return false;
-} 
+}
index f8d55d7..b97a71e 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
- * Contact: 
+ * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * 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
index 51d7f53..61a32e8 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (C) 2011, 2012 Samsung Electronics Co., Ltd. All rights reserved.
  *
- * Contact: 
+ * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
  * HyunJun Son
index 7ad2810..7673619 100644 (file)
@@ -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: ");
index 3011591..07fc65d 100644 (file)
@@ -1,9 +1,9 @@
-/* 
+/*
  * Emulator
  *
  * Copyright (C) 2012, 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
- * Contact: 
+ * Contact:
  * SeokYeon Hwang <syeon.hwang@samsung.com>
  * MunKyu Im <munkyu.im@samsung.com>
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -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)
 {