From 1e1095862dbfb7b0806ef2a31b1a914548b52ceb Mon Sep 17 00:00:00 2001 From: markster Date: Sun, 13 Jun 2004 21:25:10 +0000 Subject: x86-64 compile fixes and cleanups git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3202 f38db490-d61c-443f-a65b-d21fe96a405b --- cdr/cdr_csv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cdr/cdr_csv.c') diff --git a/cdr/cdr_csv.c b/cdr/cdr_csv.c index 17a0f4dab..8c553db68 100755 --- a/cdr/cdr_csv.c +++ b/cdr/cdr_csv.c @@ -210,7 +210,7 @@ static int csv_log(struct ast_cdr *cdr) printf("[CDR] %s ('%s' -> '%s') Dur: %ds Bill: %ds Disp: %s Flags: %s Account: [%s]\n", cdr->channel, cdr->src, cdr->dst, cdr->duration, cdr->billsec, ast_cdr_disp2str(cdr->disposition), ast_cdr_flags2str(cdr->amaflags), cdr->accountcode); #endif if (build_csv_record(buf, sizeof(buf), cdr)) { - ast_log(LOG_WARNING, "Unable to create CSV record in %d bytes. CDR not recorded!\n", sizeof(buf)); + ast_log(LOG_WARNING, "Unable to create CSV record in %d bytes. CDR not recorded!\n", (int)sizeof(buf)); } else { /* because of the absolutely unconditional need for the highest reliability possible in writing billing records, -- cgit v1.2.3