Commit 12525681 authored by Daniel Burke's avatar Daniel Burke

ttxml: added drop static keyword

parent 50810936
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment