X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fttxml%2Fttxml.c;fp=ccan%2Fttxml%2Fttxml.c;h=4e1cbbd4d2bac4841fcc0a631570ef9cbde95742;hp=f9d00ef4b63f61bf63294baf8d523cd9640f8545;hb=125256815ee0b9ec588352d454b30bab60904e4c;hpb=50810936833f0a3b59ce715849ba40d80d445bc7 diff --git a/ccan/ttxml/ttxml.c b/ccan/ttxml/ttxml.c index f9d00ef4..4e1cbbd4 100644 --- a/ccan/ttxml/ttxml.c +++ b/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;