X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fcodec%2Fcmml%2Fxlist.c;h=aa999ddf1a70c7abf1775611876db97ac9d2ced2;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=8fbab0b62b67544d428664bb906e1928e4532b5b;hpb=fe087a38282e93addb25fa9598393e40ea233b09;p=vlc diff --git a/modules/codec/cmml/xlist.c b/modules/codec/cmml/xlist.c index 8fbab0b62b..aa999ddf1a 100644 --- a/modules/codec/cmml/xlist.c +++ b/modules/codec/cmml/xlist.c @@ -22,7 +22,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #include @@ -114,7 +114,7 @@ xlist_append (XList * list, void * data) last = xlist_tail (list); if (last) last->next = l; - l->prev = last; + l->prev = last; return list; } @@ -134,7 +134,7 @@ xlist_add_before (XList * list, void * data, XList * node) l->next = node; if (p) p->next = l; node->prev = l; - + return list; }