From: Ray Strode Date: Sat, 2 May 2009 04:34:52 +0000 (-0400) Subject: [progress-animation] Fix call to remove_frames X-Git-Tag: 0.7.0~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8be743e8cd702f35e665d0d299a19cbc0c78281e;p=thirdparty%2Fplymouth.git [progress-animation] Fix call to remove_frames ply-progress-animation was passing in the frames directly instead of the progress object --- diff --git a/src/libplybootsplash/ply-progress-animation.c b/src/libplybootsplash/ply-progress-animation.c index 79d3a753..3c006dea 100644 --- a/src/libplybootsplash/ply-progress-animation.c +++ b/src/libplybootsplash/ply-progress-animation.c @@ -251,7 +251,7 @@ bool ply_progress_animation_load (ply_progress_animation_t *progress_animation) { if (ply_array_get_size (progress_animation->frames) != 0) - ply_progress_animation_remove_frames (progress_animation->frames); + ply_progress_animation_remove_frames (progress_animation); if (!ply_progress_animation_add_frames (progress_animation)) return false;