summaryrefslogtreecommitdiffstats
path: root/src/cli-command.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-15 20:12:21 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-15 20:12:21 +0000
commitc36dadd2bdf01b26a3e5598def477b22a0b31e77 (patch)
treec4dc0222d2dcdc21060c7c1da50ce28d97d2a8e1 /src/cli-command.c
parent1a6fea24f51dc7e1dc5c0683de6eb9dc9aa8d88b (diff)
remove global exported variables:
pa_memblock statistics pa_default_sample_spec git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@70 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/cli-command.c')
-rw-r--r--src/cli-command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli-command.c b/src/cli-command.c
index bf3ab0c4..0c754c7e 100644
--- a/src/cli-command.c
+++ b/src/cli-command.c
@@ -161,7 +161,7 @@ static int pa_cli_command_source_outputs(struct pa_core *c, struct pa_tokenizer
static int pa_cli_command_stat(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
assert(c && t);
- pa_strbuf_printf(buf, "Memory blocks allocated: %u, total size: %u bytes.\n", pa_memblock_count, pa_memblock_total);
+ pa_strbuf_printf(buf, "Memory blocks allocated: %u, total size: %u bytes.\n", pa_memblock_get_count(), pa_memblock_get_total());
return 0;
}