summaryrefslogtreecommitdiff
path: root/main/threadstorage.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/threadstorage.c')
-rw-r--r--main/threadstorage.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/threadstorage.c b/main/threadstorage.c
index 4c46a0f58..c97dca921 100644
--- a/main/threadstorage.c
+++ b/main/threadstorage.c
@@ -167,7 +167,7 @@ static char *handle_cli_threadstorage_show_allocations(struct ast_cli_entry *e,
pthread_mutex_unlock(&threadstoragelock);
ast_cli(a->fd, "%10d bytes allocated in %d allocation%s\n", (int) len, count, count > 1 ? "s" : "");
-
+
return CLI_SUCCESS;
}
@@ -226,7 +226,7 @@ static char *handle_cli_threadstorage_show_summary(struct ast_cli_entry *e, int
}
pthread_mutex_unlock(&threadstoragelock);
-
+
AST_LIST_TRAVERSE(&file_summary, file, entry) {
len += file->len;
count += file->count;
@@ -262,4 +262,3 @@ void threadstorage_init(void)
}
#endif /* !defined(DEBUG_THREADLOCALS) */
-