summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-15 13:23:36 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-15 13:23:36 +0200
commit48adc62ecb6143790e0e58dd84338e746e98d49a (patch)
treeff0d6e33e294709d177182217e9ac398d2facd07
parent8181192bb6dcfaccedda0c38fc30d1b2490e8640 (diff)
downloadxine-lib-48adc62ecb6143790e0e58dd84338e746e98d49a.tar.gz
xine-lib-48adc62ecb6143790e0e58dd84338e746e98d49a.tar.bz2
Change the prototype of xine_list_post_plugins_typed(), to avoid a warning.
-rw-r--r--include/xine.h.in2
-rw-r--r--src/xine-engine/load_plugins.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index 8425cc17d..5f916bd5a 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -577,7 +577,7 @@ xine_post_t *xine_post_init(xine_t *xine, const char *name,
const char *const *xine_list_post_plugins(xine_t *xine) XINE_PROTECTED;
/* get a list of all post plugins of one type */
-const char *const *xine_list_post_plugins_typed(xine_t *xine, int type) XINE_PROTECTED;
+const char *const *xine_list_post_plugins_typed(xine_t *xine, uint32_t type) XINE_PROTECTED;
/*
* post plugin input/output
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 750ec21e7..8e734daca 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -2271,7 +2271,7 @@ const char *const *xine_list_post_plugins(xine_t *xine) {
return catalog->ids;
}
-const char *const *xine_list_post_plugins_typed(xine_t *xine, int type) {
+const char *const *xine_list_post_plugins_typed(xine_t *xine, uint32_t type) {
plugin_catalog_t *catalog = xine->plugin_catalog;
plugin_node_t *node;
int i;