Commit 623314bb authored by Jonathan Beck's avatar Jonathan Beck

Use (void) instead of () in functions prototype.

parent 480fd72f
...@@ -94,7 +94,7 @@ extern "C" { ...@@ -94,7 +94,7 @@ extern "C" {
* @return the created plist * @return the created plist
* @sa #plist_type * @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 * Create a new root plist_t type #PLIST_ARRAY
...@@ -102,7 +102,7 @@ extern "C" { ...@@ -102,7 +102,7 @@ extern "C" {
* @return the created plist * @return the created plist
* @sa #plist_type * @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 * Destruct a plist_t node and all its children recursively
......
...@@ -38,7 +38,7 @@ plist_data_t plist_get_data(const plist_t node) ...@@ -38,7 +38,7 @@ plist_data_t plist_get_data(const plist_t node)
return ((GNode *) node)->data; return ((GNode *) node)->data;
} }
plist_data_t plist_new_plist_data() plist_data_t plist_new_plist_data(void)
{ {
plist_data_t data = (plist_data_t) calloc(sizeof(struct plist_data_s), 1); plist_data_t data = (plist_data_t) calloc(sizeof(struct plist_data_s), 1);
return data; return data;
...@@ -68,14 +68,14 @@ static void plist_free_node(GNode * node, gpointer none) ...@@ -68,14 +68,14 @@ static void plist_free_node(GNode * node, gpointer none)
g_node_children_foreach(node, G_TRAVERSE_ALL, plist_free_node, NULL); g_node_children_foreach(node, G_TRAVERSE_ALL, plist_free_node, NULL);
} }
plist_t plist_new_dict() plist_t plist_new_dict(void)
{ {
plist_data_t data = plist_new_plist_data(); plist_data_t data = plist_new_plist_data();
data->type = PLIST_DICT; data->type = PLIST_DICT;
return plist_new_node(data); return plist_new_node(data);
} }
plist_t plist_new_array() plist_t plist_new_array(void)
{ {
plist_data_t data = plist_new_plist_data(); plist_data_t data = plist_new_plist_data();
data->type = PLIST_ARRAY; data->type = PLIST_ARRAY;
......
...@@ -48,7 +48,7 @@ typedef struct plist_data_s *plist_data_t; ...@@ -48,7 +48,7 @@ typedef struct plist_data_s *plist_data_t;
plist_t plist_new_node(plist_data_t data); plist_t plist_new_node(plist_data_t data);
plist_data_t plist_get_data(const plist_t node); plist_data_t plist_get_data(const plist_t node);
plist_data_t plist_new_plist_data(); plist_data_t plist_new_plist_data(void);
gboolean plist_data_compare(gconstpointer a, gconstpointer b); gboolean plist_data_compare(gconstpointer a, gconstpointer b);
......
...@@ -99,7 +99,7 @@ struct xml_node { ...@@ -99,7 +99,7 @@ struct xml_node {
* *
* @return The plist XML document. * @return The plist XML document.
*/ */
static xmlDocPtr new_xml_plist() static xmlDocPtr new_xml_plist(void)
{ {
char *plist = strdup(plist_base); char *plist = strdup(plist_base);
xmlDocPtr plist_xml = xmlParseMemory(plist, strlen(plist)); xmlDocPtr plist_xml = xmlParseMemory(plist, strlen(plist));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment