aboutsummaryrefslogtreecommitdiff
path: root/src/SongSticker.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-30 22:53:12 +0100
committerMax Kellermann <max@duempel.org>2013-01-30 22:53:12 +0100
commit5ed9f02c4de0a8ddb7649e0541a8d6f32f61b3f8 (patch)
tree32094f443903b1c128f2336278f120f896091001 /src/SongSticker.cxx
parent378ebad1c8d7079b41319600f13c1c884d6c693a (diff)
TagPool, ...: include cleanup
Diffstat (limited to 'src/SongSticker.cxx')
-rw-r--r--src/SongSticker.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SongSticker.cxx b/src/SongSticker.cxx
index 40af50b3..86385fc3 100644
--- a/src/SongSticker.cxx
+++ b/src/SongSticker.cxx
@@ -114,12 +114,12 @@ struct sticker_song_find_data {
size_t base_uri_length;
void (*func)(struct song *song, const char *value,
- gpointer user_data);
- gpointer user_data;
+ void *user_data);
+ void *user_data;
};
static void
-sticker_song_find_cb(const char *uri, const char *value, gpointer user_data)
+sticker_song_find_cb(const char *uri, const char *value, void *user_data)
{
struct sticker_song_find_data *data =
(struct sticker_song_find_data *)user_data;
@@ -136,8 +136,8 @@ sticker_song_find_cb(const char *uri, const char *value, gpointer user_data)
bool
sticker_song_find(Directory *directory, const char *name,
void (*func)(struct song *song, const char *value,
- gpointer user_data),
- gpointer user_data)
+ void *user_data),
+ void *user_data)
{
struct sticker_song_find_data data;
data.directory = directory;