dect
/
asterisk
Archived
13
0
Fork 0

cast constants into the proper type (bug #4686)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6106 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2005-07-12 15:13:39 +00:00
parent be462a3f05
commit f4fecc342e
1 changed files with 2 additions and 2 deletions

View File

@ -3391,7 +3391,7 @@ ast_group_t ast_get_group(char *s)
if ((x > 63) || (x < 0)) {
ast_log(LOG_WARNING, "Ignoring invalid group %d (maximum group is 63)\n", x);
} else
group |= (1 << x);
group |= ((ast_group_t) 1 << x);
}
}
return group;
@ -3462,7 +3462,7 @@ char *ast_print_group(char *buf, int buflen, ast_group_t group)
return(buf);
for (i=0; i<=63; i++) { /* Max group is 63 */
if (group & (1 << i)) {
if (group & ((ast_group_t) 1 << i)) {
if (!first) {
strncat(buf, ", ", buflen);
} else {