]> git.sesse.net Git - vlc/blobdiff - modules/codec/cmml/xlist.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / codec / cmml / xlist.c
index d2d73047b8b261ab65529c3b9601e4977cee6734..aa999ddf1a70c7abf1775611876db97ac9d2ced2 100644 (file)
@@ -3,7 +3,7 @@
  *****************************************************************************
  * Copyright (C) 2003-2004 Commonwealth Scientific and Industrial Research
  *                         Organisation (CSIRO) Australia
- * Copyright (C) 2000-2004 VideoLAN (Centrale Réseaux) and its contributors
+ * Copyright (C) 2000-2004 the VideoLAN team
  *
  * $Id$
  *
@@ -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 <stdlib.h>
@@ -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;
 }