diff options
Diffstat (limited to 'include/plist/plist.h')
-rw-r--r-- | include/plist/plist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index 4547f18..7bdd00a 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -94,7 +94,7 @@ extern "C" { * @return the created plist * @sa #plist_type */ - PLIST_API plist_t plist_new_dict(); + PLIST_API plist_t plist_new_dict(void); /** * Create a new root plist_t type #PLIST_ARRAY @@ -102,7 +102,7 @@ extern "C" { * @return the created plist * @sa #plist_type */ - PLIST_API plist_t plist_new_array(); + PLIST_API plist_t plist_new_array(void); /** * Destruct a plist_t node and all its children recursively |