aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 20:59:49 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 20:59:49 +0000
commit393af89e5138d88de1bfaf0dd48129b3d81a8f8f (patch)
tree58d03f1f7f30aec62c4404907143bc822208db8c /main
parentd6d5d65345f869d17cd13525387a735b4f7e5fcd (diff)
Fix 1.4 build when LOW_MEMORY is enabled.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@114051 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/utils.c b/main/utils.c
index 5b80b107c..6d20a9d90 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -1354,8 +1354,10 @@ int ast_utils_init(void)
{
base64_init();
#ifdef DEBUG_THREADS
+#if !defined(LOW_MEMORY)
ast_cli_register_multiple(utils_cli, sizeof(utils_cli) / sizeof(utils_cli[0]));
#endif
+#endif
return 0;
}