summaryrefslogtreecommitdiff
path: root/src/input/input_cdda.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2010-01-06 21:15:59 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2010-01-06 21:15:59 +0000
commit9a472d6a7f6f24dce5ff9a66aeed99662359ad4e (patch)
tree154d4c02e7e650e748683438178a3b2bb15e4cd4 /src/input/input_cdda.c
parent8bd8e600bf475426cbcd5b8f8f89fb2d6e53ec29 (diff)
downloadxine-lib-9a472d6a7f6f24dce5ff9a66aeed99662359ad4e.tar.gz
xine-lib-9a472d6a7f6f24dce5ff9a66aeed99662359ad4e.tar.bz2
Update to libxdg-basedir 1.0.2; adapt accordingly, and default to external.
Diffstat (limited to 'src/input/input_cdda.c')
-rw-r--r--src/input/input_cdda.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c
index 0b7f854e2..31bc51bc2 100644
--- a/src/input/input_cdda.c
+++ b/src/input/input_cdda.c
@@ -1483,7 +1483,7 @@ static void _cdda_parse_cddb_info (cdda_input_plugin_t *this, char *buffer, char
static int _cdda_load_cached_cddb_infos(cdda_input_plugin_t *this) {
DIR *dir;
- const char *const xdg_cache_home = xdgCacheHome(this->stream->xine->basedir_handle);
+ const char *const xdg_cache_home = xdgCacheHome(&this->stream->xine->basedir_handle);
if(this == NULL)
return 0;
@@ -1545,7 +1545,7 @@ static void _cdda_save_cached_cddb_infos(cdda_input_plugin_t *this, char *fileco
FILE *fd;
char *cfile;
- const char *const xdg_cache_home = xdgCacheHome(this->stream->xine->basedir_handle);
+ const char *const xdg_cache_home = xdgCacheHome(&this->stream->xine->basedir_handle);
if((this == NULL) || (filecontent == NULL))
return;