From 48adc62ecb6143790e0e58dd84338e746e98d49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Fri, 15 Jun 2007 13:23:36 +0200 Subject: Change the prototype of xine_list_post_plugins_typed(), to avoid a warning. --- include/xine.h.in | 2 +- src/xine-engine/load_plugins.c | 2 +- 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; -- cgit v1.2.3