]> sjero.net Git - linphone/commitdiff
Fix xml2lpc tool
authorYann Diorcet <yann.diorcet@belledonne-communications.com>
Thu, 13 Dec 2012 16:54:55 +0000 (17:54 +0100)
committerYann Diorcet <yann.diorcet@belledonne-communications.com>
Thu, 13 Dec 2012 16:54:55 +0000 (17:54 +0100)
tools/xml2lpc.c

index ce12eeb466bab6d903c4e01ee6d1a14b7fa05778..d5e2160ab22896d481eb02a1d7fa54e28587be76 100644 (file)
@@ -64,12 +64,12 @@ void xml2lpc_context_destroy(xml2lpc_context *ctx) {
        free(ctx);
 }
 
-void xml2lpc_context_clear_logs(xml2lpc_context *ctx) {
+static void xml2lpc_context_clear_logs(xml2lpc_context *ctx) {
        ctx->errorBuffer[0]='\0';
        ctx->warningBuffer[0]='\0';
 }
 
-void xml2lpc_log(xml2lpc_context *xmlCtx, int level, const char *fmt, ...) {
+static void xml2lpc_log(xml2lpc_context *xmlCtx, int level, const char *fmt, ...) {
        va_list args;   
        va_start(args, fmt);    
        if(xmlCtx->cbf != NULL) {
@@ -78,7 +78,7 @@ void xml2lpc_log(xml2lpc_context *xmlCtx, int level, const char *fmt, ...) {
        va_end(args);
 }
 
-void xml2lpc_genericxml_error(void *ctx, const char *fmt, ...) {       
+static void xml2lpc_genericxml_error(void *ctx, const char *fmt, ...) {        
        xml2lpc_context *xmlCtx = (xml2lpc_context *)ctx;
        int sl = strlen(xmlCtx->errorBuffer);
        va_list args;   
@@ -87,7 +87,7 @@ void xml2lpc_genericxml_error(void *ctx, const char *fmt, ...) {
        va_end(args);
 }
 
-void xml2lpc_genericxml_warning(void *ctx, const char *fmt, ...) {     
+static void xml2lpc_genericxml_warning(void *ctx, const char *fmt, ...) {      
        xml2lpc_context *xmlCtx = (xml2lpc_context *)ctx;
        int sl = strlen(xmlCtx->warningBuffer);
        va_list args;   
@@ -96,6 +96,7 @@ void xml2lpc_genericxml_warning(void *ctx, const char *fmt, ...) {
        va_end(args);
 }
 
+#if 0
 static void dumpNodes(int level, xmlNode * a_node, xml2lpc_context *ctx) {
     xmlNode *cur_node = NULL;
 
@@ -109,6 +110,7 @@ static void dumpNodes(int level, xmlNode * a_node, xml2lpc_context *ctx) {
         dumpNodes(level + 1, cur_node->children, ctx);
     }
 }
+#endif
 
 
 static void dumpNode(xmlNode *node, xml2lpc_context *ctx) {
@@ -338,4 +340,4 @@ int xml2lpc_set_xsd_string(xml2lpc_context* xmlCtx, const char *content) {
                return -1;
        }
        return 0;
-}
\ No newline at end of file
+}