]> git.sesse.net Git - vlc/blobdiff - modules/codec/cmml/xlist.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / codec / cmml / xlist.c
index 944e2e0c092ed34b67cec3ed7f1a83f253b5e171..aa999ddf1a70c7abf1775611876db97ac9d2ced2 100644 (file)
@@ -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;
 }