From 8be743e8cd702f35e665d0d299a19cbc0c78281e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 2 May 2009 00:34:52 -0400 Subject: [PATCH] [progress-animation] Fix call to remove_frames ply-progress-animation was passing in the frames directly instead of the progress object --- src/libplybootsplash/ply-progress-animation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3