mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 19:52:48 +00:00
Make conf2ael build on 64-bit systems.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79687 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -383,11 +383,11 @@ int main(int argc, char **argv)
|
|||||||
printf("Context: %s\n", tmp->name);
|
printf("Context: %s\n", tmp->name);
|
||||||
}
|
}
|
||||||
printf("=========\n");
|
printf("=========\n");
|
||||||
printf("Sizeof(context)=%d\n", sizeof(struct ast_context));
|
printf("Sizeof(context)=%d\n", (int)sizeof(struct ast_context));
|
||||||
printf("Sizeof(exten)=%d\n", sizeof(struct ast_exten));
|
printf("Sizeof(exten)=%d\n", (int)sizeof(struct ast_exten));
|
||||||
printf("Sizeof(include)=%d\n", sizeof(struct ast_include));
|
printf("Sizeof(include)=%d\n", (int)sizeof(struct ast_include));
|
||||||
printf("Sizeof(ignorepat)=%d\n", sizeof(struct ast_ignorepat));
|
printf("Sizeof(ignorepat)=%d\n", (int)sizeof(struct ast_ignorepat));
|
||||||
printf("Sizeof(sw)=%d\n", sizeof(struct ast_sw));
|
printf("Sizeof(sw)=%d\n", (int)sizeof(struct ast_sw));
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
while ((tmp = localized_walk_contexts(tmp)) ) {
|
while ((tmp = localized_walk_contexts(tmp)) ) {
|
||||||
/* printf("Context: %s\n", tmp->name); */
|
/* printf("Context: %s\n", tmp->name); */
|
||||||
|
Reference in New Issue
Block a user