diff options
author | Jonathan Beck | 2009-03-27 17:41:10 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-03-27 17:41:10 +0100 |
commit | 623314bb8de2a6ac71e44833d1f1a796274d3871 (patch) | |
tree | b932030862a932aae45a5d1b514d7d2c3b1a3f0b /include/plist/plist.h | |
parent | 480fd72fc285fc4f42a7618147cce646ba337ebe (diff) | |
download | libplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.gz libplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.bz2 |
Use (void) instead of () in functions prototype.
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 |