[entry] commented out ERR logs in _strncpy function
authorMyungjae Lee <mjae.lee@samsung.com>
Fri, 7 Jan 2011 09:57:52 +0000 (18:57 +0900)
committerMyungjae Lee <mjae.lee@samsung.com>
Fri, 7 Jan 2011 09:57:52 +0000 (18:57 +0900)
src/lib/elm_entry.c

index 497fd60..98b558f 100644 (file)
@@ -950,17 +950,17 @@ _strncpy(char* dest, const char* src, size_t count)
 {
    if (!dest)
      {
-       ERR( "dest is NULL" );
+       //ERR( "dest is NULL" );
        return NULL;
      }
    if (!src)
      {
-       ERR( "src is NULL" );
+       //ERR( "src is NULL" );
        return NULL;
      }
    if (count < 0)
      {
-       ERR( "count is smaller than 0" );
+       //ERR( "count is smaller than 0" );
        return NULL;
      }