From c8fc7dd8f8dfb7bc4b0700e43f418504d639bfd3 Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Thu, 5 Mar 2009 05:59:54 +0000 Subject: [PATCH] git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12454 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_xml_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/switch_xml_config.h b/src/include/switch_xml_config.h index df27a222f1..2c7557fcb7 100644 --- a/src/include/switch_xml_config.h +++ b/src/include/switch_xml_config.h @@ -49,12 +49,12 @@ typedef enum { typedef struct { char *key; /*< The item's key or NULL if this is the last one in the list */ - switch_size_t value; /*< The item's value */ + int value; /*< The item's value */ } switch_xml_config_enum_item_t; typedef struct { switch_memory_pool_t *pool; /*< If set, the string will be allocated on the pool (unless the length param is > 0, then you misread this file)*/ - int length; /*< Length of the char array, or 0 if memory has to be allocated dynamically*/ + switch_size_t length; /*< Length of the char array, or 0 if memory has to be allocated dynamically*/ } switch_xml_config_string_options_t; struct switch_xml_config_item;