Remove final? use of u_int so it builds on OSX

This commit is contained in:
Matthew Brush 2013-03-04 03:44:29 -08:00
parent dd8b293d22
commit 8b89377762
1 changed files with 2 additions and 2 deletions

View File

@ -257,8 +257,8 @@ __cfustring_split_to_raw(cfustring_t *cfu_str, size_t *num_strings, size_t num_s
char **sep_array = (char **)calloc(num_seps, sizeof(char *));
char **sep_chk_ptrs = (char **)calloc(num_seps, sizeof(char *));
char **ret_strings = (char **)calloc(2, sizeof(char *));
u_int max_ret_strings = 2;
u_int used_ret_strings = 0;
unsigned int max_ret_strings = 2;
unsigned int used_ret_strings = 0;
char *start = NULL;
char *end = NULL;
char *next_str = NULL;