seoz pushed a commit to branch master.

commit c886845a1b16d3ef4b4ee73fb0bcd6bc6d78a99c
Author: Daniel Juyung Seo <[email protected]>
Date:   Fri Apr 26 17:38:16 2013 +0900

    eina_str.c: fixed formatting.
---
 src/lib/eina/eina_str.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/eina/eina_str.c b/src/lib/eina/eina_str.c
index 0409859..b6b0d9e 100644
--- a/src/lib/eina/eina_str.c
+++ b/src/lib/eina/eina_str.c
@@ -375,7 +375,7 @@ eina_str_has_prefix(const char *str, const char *prefix)
    str_len = strlen(str);
    prefix_len = eina_strlen_bounded(prefix, str_len);
    if (prefix_len == (size_t)-1)
-      return EINA_FALSE;
+     return EINA_FALSE;
 
    return (strncmp(str, prefix, prefix_len) == 0);
 }
@@ -421,7 +421,7 @@ eina_str_join_len(char *dst,
    size_t off;
 
    if (size < 1)
-      return ret;
+     return ret;
 
    if (size <= a_len)
      {
@@ -449,7 +449,7 @@ eina_str_join_len(char *dst,
         return ret;
      }
 
-        memcpy(dst + off, b, b_len);
+   memcpy(dst + off, b, b_len);
    dst[off + b_len] = '\0';
    return ret;
 }

-- 

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may

Reply via email to