summaryrefslogtreecommitdiff
path: root/gtkplaylist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-10-24 18:53:15 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-10-24 18:53:15 +0200
commite1b8366ccbf93786440f0c0bf4bdd6c3b9ae5d5b (patch)
tree26f448a15c78ae47a817046730375ad525ab6d28 /gtkplaylist.c
parentf86e458d9911f29178e84c5d3bb37b21b4955895 (diff)
fixed gcc typecast warning
Diffstat (limited to 'gtkplaylist.c')
-rw-r--r--gtkplaylist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtkplaylist.c b/gtkplaylist.c
index a4fe67c7..658c7bd2 100644
--- a/gtkplaylist.c
+++ b/gtkplaylist.c
@@ -115,7 +115,8 @@ typedef struct {
static colhdr_animator_t colhdr_anim;
static gboolean
-redraw_header (colhdr_animator_t *anim) {
+redraw_header (void *data) {
+ colhdr_animator_t *anim = (colhdr_animator_t *)data;
gtkpl_header_draw (anim->pl);
gtkpl_expose_header (anim->pl, 0, 0, anim->pl->header->allocation.width, anim->pl->header->allocation.height);
return FALSE;