# HG changeset patch # User Nathan Walp # Date 1134939402 0 # Node ID a22381c9072dd4d6107338b6d28cec861d63b6d0 # Parent 7f0f68ae1f5afc48ee42bad54d311d1b9013d75a [gaim-migrate @ 14869] warn_unused_result found these committer: Tailor Script diff -r 7f0f68ae1f5a -r a22381c9072d plugins/gestures/stroke.c --- a/plugins/gestures/stroke.c Sun Dec 18 19:03:05 2005 +0000 +++ b/plugins/gestures/stroke.c Sun Dec 18 20:56:42 2005 +0000 @@ -233,7 +233,7 @@ /* add the interpolated point */ new_point_p->x = ix; new_point_p->y = iy; - g_slist_append (metrics->pointList, new_point_p); + metrics->pointList = g_slist_append (metrics->pointList, new_point_p); /* update metrics */ if (((gint) ix) < metrics->min_x) metrics->min_x = (gint) ix; @@ -257,7 +257,7 @@ /* add the interpolated point */ new_point_p->y = iy; new_point_p->x = ix; - g_slist_append(metrics->pointList, new_point_p); + metrics->pointList = g_slist_append(metrics->pointList, new_point_p); /* update metrics */ if (((gint) ix) < metrics->min_x) metrics->min_x = (gint) ix; @@ -271,7 +271,7 @@ } /* add the sampled point */ - g_slist_append(metrics->pointList, new_point_p); + metrics->pointList = g_slist_append(metrics->pointList, new_point_p); } /* record the sampled point values */