]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
[throbber] Fix call to remove_frames
authorRay Strode <rstrode@redhat.com>
Mon, 4 May 2009 01:22:44 +0000 (21:22 -0400)
committerRay Strode <rstrode@redhat.com>
Wed, 20 May 2009 21:27:41 +0000 (17:27 -0400)
ply-throbber was passing in the frames directly
instead of the throbber object

src/libplybootsplash/ply-throbber.c

index e1bce90bddab7b6031e72acd8c92bf449b758f77..7c2d3327089385e46e26388e040a52e6fe77ab1e 100644 (file)
@@ -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;