aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-31 20:31:11 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-31 20:31:11 +0000
commitf6cbd1f4fe8440a22997e62eeedcfdb907dd9859 (patch)
tree6a11d81ed59ecf88a72cded0c8dfbc9d22482ca4 /include
parentf377485e3f6bb2b422bc828a349e52b4680e1793 (diff)
Don't hard code the RTP payload type to 101 (bug #2192)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3552 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index aba72980d..83f44ebe9 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -158,7 +158,7 @@ void ast_unregister_atexit(void (*func)(void));
#define LOCAL_USER_ADD(u) { \
\
- if (!(u=malloc(sizeof(struct localuser)))) { \
+ if (!(u=(struct localuser *)malloc(sizeof(struct localuser)))) { \
ast_log(LOG_WARNING, "Out of memory\n"); \
return -1; \
} \