aboutsummaryrefslogtreecommitdiffstats
path: root/utils/conf2ael.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-16 15:27:33 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-16 15:27:33 +0000
commitfc904a4a1d6f927617f10482e93ed53de99f396a (patch)
treea2b08fac555d1f75cb61836a20d4756fab7a62f8 /utils/conf2ael.c
parent6bc0bc518947208f89ba2630944267a45a3088fb (diff)
Make conf2ael build on 64-bit systems.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@79687 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils/conf2ael.c')
-rw-r--r--utils/conf2ael.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/conf2ael.c b/utils/conf2ael.c
index 7caf0698a..880fc3551 100644
--- a/utils/conf2ael.c
+++ b/utils/conf2ael.c
@@ -383,11 +383,11 @@ int main(int argc, char **argv)
printf("Context: %s\n", tmp->name);
}
printf("=========\n");
- printf("Sizeof(context)=%d\n", sizeof(struct ast_context));
- printf("Sizeof(exten)=%d\n", sizeof(struct ast_exten));
- printf("Sizeof(include)=%d\n", sizeof(struct ast_include));
- printf("Sizeof(ignorepat)=%d\n", sizeof(struct ast_ignorepat));
- printf("Sizeof(sw)=%d\n", sizeof(struct ast_sw));
+ printf("Sizeof(context)=%d\n", (int)sizeof(struct ast_context));
+ printf("Sizeof(exten)=%d\n", (int)sizeof(struct ast_exten));
+ printf("Sizeof(include)=%d\n", (int)sizeof(struct ast_include));
+ printf("Sizeof(ignorepat)=%d\n", (int)sizeof(struct ast_ignorepat));
+ printf("Sizeof(sw)=%d\n", (int)sizeof(struct ast_sw));
tmp = 0;
while ((tmp = localized_walk_contexts(tmp)) ) {
/* printf("Context: %s\n", tmp->name); */