summaryrefslogtreecommitdiffstats
path: root/libhb/hb_dict.h
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-04-05 20:59:11 +0000
committerjstebbins <[email protected]>2015-04-05 20:59:11 +0000
commit712180d874cefa835b159461552543f071455d4d (patch)
treebca7e8bb3527b8301b69d3c99e9dc5c5f2c3198a /libhb/hb_dict.h
parent75e81dbbaafa76dfde25343f50563aed8c7776e7 (diff)
hb_dict: fix prototypes for functions that take no params
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7062 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb_dict.h')
-rw-r--r--libhb/hb_dict.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/hb_dict.h b/libhb/hb_dict.h
index 6d8057e09..52898e413 100644
--- a/libhb/hb_dict.h
+++ b/libhb/hb_dict.h
@@ -34,7 +34,7 @@ typedef void* hb_dict_iter_t;
* "key" must be a string with non-zero length (NULL and "" are invalid keys).
* "value" must be an hb_value_t*
*/
-hb_dict_t * hb_dict_init();
+hb_dict_t * hb_dict_init(void);
/* free dictionary and release references to all values it contains */
void hb_dict_free(hb_dict_t ** dict_ptr);
/* add value to dictionary. dictionary takes ownership of value */
@@ -60,7 +60,7 @@ const char * hb_dict_iter_key(const hb_dict_iter_t iter);
hb_value_t * hb_dict_iter_value(const hb_dict_iter_t iter);
/* hb_value_array_t */
-hb_value_array_t * hb_value_array_init();
+hb_value_array_t * hb_value_array_init(void);
/* remove all elements of array */
void hb_value_array_clear(hb_value_array_t *array);
/* get value from array. value has borrowed reference */