Update meta_data.c
authorhshopeful <daifeiyahs@163.com>
Mon, 20 Apr 2015 12:35:40 +0000 (20:35 +0800)
committerMarc Fournier <marc.fournier@camptocamp.com>
Mon, 20 Apr 2015 15:07:10 +0000 (17:07 +0200)
In the function meta_data_get_string(), when the type mismatchs,the ERROR statement should be
ERROR ("meta_data_get_string: Type mismatch for key `%s'", e->key);
not
ERROR ("meta_data_get_signed_int: Type mismatch for key `%s'", e->key);

src/meta_data.c

index ea98ba9..0192753 100644 (file)
@@ -483,7 +483,7 @@ int meta_data_get_string (meta_data_t *md, /* {{{ */
 
   if (e->type != MD_TYPE_STRING)
   {
-    ERROR ("meta_data_get_signed_int: Type mismatch for key `%s'", e->key);
+    ERROR ("meta_data_get_string: Type mismatch for key `%s'", e->key);
     pthread_mutex_unlock (&md->lock);
     return (-ENOENT);
   }