Browse Source

ttxml: added drop static keyword

Daniel Burke 14 years ago
parent
commit
125256815e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/ttxml/ttxml.c

+ 1 - 1
ccan/ttxml/ttxml.c

@@ -64,7 +64,7 @@ void xml_free(XmlNode *target)
 /* Raise flags if we have a character of special meaning.
  * This is where I've hidden the switch statements :-p
  */
-int is_special(char item)
+static int is_special(char item)
 {
 	if((item >= 'a' && item <= 'z') || (item >= 'A' && item <='Z'))
 		return XML_LETTER;