dect
/
asterisk
Archived
13
0
Fork 0

Fixed an issue in the threadstorage cli functions resulting from the constification of struct ast_cli_args in r196072.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@198558 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
dvossel 2009-06-01 15:23:21 +00:00
parent 0838f068ca
commit 6ca145f7f4
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ void __ast_threadstorage_object_replace(void *key_old, void *key_new, size_t len
static char *handle_cli_threadstorage_show_allocations(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
char *fn = NULL;
const char *fn = NULL;
size_t len = 0;
unsigned int count = 0;
struct tls_object *to;
@ -169,7 +169,7 @@ static char *handle_cli_threadstorage_show_allocations(struct ast_cli_entry *e,
static char *handle_cli_threadstorage_show_summary(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
char *fn = NULL;
const char *fn = NULL;
size_t len = 0;
unsigned int count = 0;
struct tls_object *to;