From 125256815ee0b9ec588352d454b30bab60904e4c Mon Sep 17 00:00:00 2001 From: Daniel Burke Date: Mon, 5 Sep 2011 17:16:50 +0930 Subject: [PATCH] ttxml: added drop static keyword --- ccan/ttxml/ttxml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2