From: Ray Strode Date: Mon, 4 May 2009 01:22:44 +0000 (-0400) Subject: [throbber] Fix call to remove_frames X-Git-Tag: 0.7.0~187 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4596395fe681e775c0401de8f411b3c6e867874e;p=thirdparty%2Fplymouth.git [throbber] Fix call to remove_frames ply-throbber was passing in the frames directly instead of the throbber object --- diff --git a/src/libplybootsplash/ply-throbber.c b/src/libplybootsplash/ply-throbber.c index e1bce90b..7c2d3327 100644 --- a/src/libplybootsplash/ply-throbber.c +++ b/src/libplybootsplash/ply-throbber.c @@ -304,7 +304,7 @@ bool ply_throbber_load (ply_throbber_t *throbber) { if (ply_array_get_size (throbber->frames) != 0) - ply_throbber_remove_frames (throbber->frames); + ply_throbber_remove_frames (throbber); if (!ply_throbber_add_frames (throbber)) return false;