]> granicus.if.org Git - json-c/commitdiff
fix typo in json_object.h
authorMichael Clark <michael@metaparadigm.com>
Sat, 10 Jan 2009 13:58:06 +0000 (13:58 +0000)
committerMichael Clark <michael@metaparadigm.com>
Sat, 10 Jan 2009 13:58:06 +0000 (13:58 +0000)
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@28 327403b1-1117-474d-bef2-5cb71233fd97

json_object.c
json_object.h

index f0ce5f71cecced0a86e0909b8e2841791dc9032c..3ff4d64fff8ec517379c9dcda4c91fa426b22031 100644 (file)
@@ -243,7 +243,7 @@ struct json_object* json_object_new_object()
   if(!this) return NULL;
   this->_delete = &json_object_object_delete;
   this->_to_json_string = &json_object_object_to_json_string;
-  this->o.c_object = lh_kchar_table_new(JSON_OBJECT_DEF_HASH_ENTIRES,
+  this->o.c_object = lh_kchar_table_new(JSON_OBJECT_DEF_HASH_ENTRIES,
                                        NULL, &json_object_lh_entry_free);
   return this;
 }
index bbfea85e2d767cd933629184bdd0a60e63e9dbf6..4c8f6db60bb658fe364e4c9d34cc1edb918ed4ca 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _json_object_h_
 #define _json_object_h_
 
-#define JSON_OBJECT_DEF_HASH_ENTIRES 16
+#define JSON_OBJECT_DEF_HASH_ENTRIES 16
 
 #undef FALSE
 #define FALSE ((boolean)0)