]> git.sesse.net Git - vlc/commitdiff
xtag: comment out xtag_snprint wich is never used.
authorRémi Duraffort <ivoire@videolan.org>
Wed, 25 Feb 2009 13:18:40 +0000 (14:18 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Wed, 25 Feb 2009 18:37:02 +0000 (19:37 +0100)
modules/misc/xml/xtag.c

index 2c5a1500a67bcbf4c01feef053401b4e10ed2301..681be12be1eb3b24b22a475aaf6732469c68ca3d 100644 (file)
@@ -123,7 +123,9 @@ static char *xtag_get_attribute( XTag *, char * );
 static XTag *xtag_first_child( XTag *, char * );
 static XTag *xtag_next_child( XTag *, char * );
 static void  xtag_free( XTag * );
+#if 0
 static int xtag_snprint( char *, int, XTag * );
+#endif
 
 /*****************************************************************************
  * Module initialization
@@ -965,6 +967,7 @@ static XTag *xtag_next_child( XTag *xtag, char *name )
     return NULL;
 }
 
+#if 0
 /*
  * This snprints function takes a variable list of char *, the last of
  * which must be NULL, and prints each in turn to buf.
@@ -1066,4 +1069,5 @@ static int xtag_snprint( char *buf, int n, XTag *xtag )
 
     return written;
 }
+#endif