use unsigned more consistently

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7261 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2008-01-17 05:52:50 +00:00
parent 8ccad0a22f
commit 7cc21a90bd
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -304,7 +304,7 @@ SWITCH_DECLARE(switch_time_t) switch_str_time(const char *in);
\param arraylen the max number of elements in the array
\return the number of elements added to the array
*/
SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, int arraylen);
SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, unsigned int arraylen);
SWITCH_DECLARE(switch_bool_t) switch_is_number(const char *str);
SWITCH_DECLARE(char *) switch_strip_spaces(const char *str);