diff options
author | brianp <brianp@13f79535-47bb-0310-9956-ffa450edef68> | 2003-06-24 05:40:19 +0000 |
---|---|---|
committer | brianp <brianp@13f79535-47bb-0310-9956-ffa450edef68> | 2003-06-24 05:40:19 +0000 |
commit | 1f83b993181226d7362606bf4659c022d967e0c4 (patch) | |
tree | a55e34533e78fde4eaa377c695ca7fe6c2f3ba1f /tables | |
parent | 97e84008474b429ef16e9cddd6089653f05aef52 (diff) | |
download | libapr-1f83b993181226d7362606bf4659c022d967e0c4.tar.gz |
fix some compiler warnings
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64549 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tables')
-rw-r--r-- | tables/apr_tables.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tables/apr_tables.c b/tables/apr_tables.c index 885a28220..45e88172b 100644 --- a/tables/apr_tables.c +++ b/tables/apr_tables.c @@ -1047,7 +1047,6 @@ static apr_table_entry_t **table_mergesort(apr_pool_t *pool, * over all the remaining elements from the * other block */ - apr_table_entry_t *lowest; if (block1_start == block1_end) { for (; block2_start < block2_end; block2_start++) { *dst++ = values[block2_start]; @@ -1197,7 +1196,7 @@ APR_DECLARE(void) apr_table_compress(apr_table_t *t, unsigned flags) table_reindex(t); } -APR_DECLARE(void) apr_table_cat(apr_table_t *t, const apr_table_t *s) +static void apr_table_cat(apr_table_t *t, const apr_table_t *s) { const int n = t->a.nelts; register int idx; |