From 623314bb8de2a6ac71e44833d1f1a796274d3871 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Fri, 27 Mar 2009 17:41:10 +0100 Subject: Use (void) instead of () in functions prototype. --- include/plist/plist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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 -- cgit v1.1-32-gdbae