diff options
| author | 2009-03-27 17:41:10 +0100 | |
|---|---|---|
| committer | 2009-03-27 17:41:10 +0100 | |
| commit | 623314bb8de2a6ac71e44833d1f1a796274d3871 (patch) | |
| tree | b932030862a932aae45a5d1b514d7d2c3b1a3f0b /src | |
| parent | 480fd72fc285fc4f42a7618147cce646ba337ebe (diff) | |
| download | libplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.gz libplist-623314bb8de2a6ac71e44833d1f1a796274d3871.tar.bz2 | |
Use (void) instead of () in functions prototype.
Diffstat (limited to 'src')
| -rw-r--r-- | src/plist.c | 6 | ||||
| -rw-r--r-- | src/plist.h | 2 | ||||
| -rw-r--r-- | src/xplist.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/plist.c b/src/plist.c index e800b5c..bdec7a8 100644 --- a/src/plist.c +++ b/src/plist.c | |||
| @@ -38,7 +38,7 @@ plist_data_t plist_get_data(const plist_t node) | |||
| 38 | return ((GNode *) node)->data; | 38 | return ((GNode *) node)->data; |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | plist_data_t plist_new_plist_data() | 41 | plist_data_t plist_new_plist_data(void) |
| 42 | { | 42 | { |
| 43 | plist_data_t data = (plist_data_t) calloc(sizeof(struct plist_data_s), 1); | 43 | plist_data_t data = (plist_data_t) calloc(sizeof(struct plist_data_s), 1); |
| 44 | return data; | 44 | return data; |
| @@ -68,14 +68,14 @@ static void plist_free_node(GNode * node, gpointer none) | |||
| 68 | g_node_children_foreach(node, G_TRAVERSE_ALL, plist_free_node, NULL); | 68 | g_node_children_foreach(node, G_TRAVERSE_ALL, plist_free_node, NULL); |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | plist_t plist_new_dict() | 71 | plist_t plist_new_dict(void) |
| 72 | { | 72 | { |
| 73 | plist_data_t data = plist_new_plist_data(); | 73 | plist_data_t data = plist_new_plist_data(); |
| 74 | data->type = PLIST_DICT; | 74 | data->type = PLIST_DICT; |
| 75 | return plist_new_node(data); | 75 | return plist_new_node(data); |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | plist_t plist_new_array() | 78 | plist_t plist_new_array(void) |
| 79 | { | 79 | { |
| 80 | plist_data_t data = plist_new_plist_data(); | 80 | plist_data_t data = plist_new_plist_data(); |
| 81 | data->type = PLIST_ARRAY; | 81 | data->type = PLIST_ARRAY; |
diff --git a/src/plist.h b/src/plist.h index 83c63bf..ebbb0b5 100644 --- a/src/plist.h +++ b/src/plist.h | |||
| @@ -48,7 +48,7 @@ typedef struct plist_data_s *plist_data_t; | |||
| 48 | 48 | ||
| 49 | plist_t plist_new_node(plist_data_t data); | 49 | plist_t plist_new_node(plist_data_t data); |
| 50 | plist_data_t plist_get_data(const plist_t node); | 50 | plist_data_t plist_get_data(const plist_t node); |
| 51 | plist_data_t plist_new_plist_data(); | 51 | plist_data_t plist_new_plist_data(void); |
| 52 | gboolean plist_data_compare(gconstpointer a, gconstpointer b); | 52 | gboolean plist_data_compare(gconstpointer a, gconstpointer b); |
| 53 | 53 | ||
| 54 | 54 | ||
diff --git a/src/xplist.c b/src/xplist.c index c0849b6..2bee7c7 100644 --- a/src/xplist.c +++ b/src/xplist.c | |||
| @@ -99,7 +99,7 @@ struct xml_node { | |||
| 99 | * | 99 | * |
| 100 | * @return The plist XML document. | 100 | * @return The plist XML document. |
| 101 | */ | 101 | */ |
| 102 | static xmlDocPtr new_xml_plist() | 102 | static xmlDocPtr new_xml_plist(void) |
| 103 | { | 103 | { |
| 104 | char *plist = strdup(plist_base); | 104 | char *plist = strdup(plist_base); |
| 105 | xmlDocPtr plist_xml = xmlParseMemory(plist, strlen(plist)); | 105 | xmlDocPtr plist_xml = xmlParseMemory(plist, strlen(plist)); |
