From 9fd61ee322a69acb1c130fbe104c2344e226a958 Mon Sep 17 00:00:00 2001 From: tilghman Date: Wed, 1 Mar 2006 17:41:52 +0000 Subject: Bug 6615 - Fix 64bit conversion errors by using a long int git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@11503 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/cdr.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h index 6598b3806..c43882946 100644 --- a/include/asterisk/cdr.h +++ b/include/asterisk/cdr.h @@ -74,13 +74,13 @@ struct ast_cdr { struct timeval end; /*! Total time in system, in seconds */ - int duration; + long int duration; /*! Total time call is up, in seconds */ - int billsec; + long int billsec; /*! What happened to the call */ - int disposition; + long int disposition; /*! What flags to use */ - int amaflags; + long int amaflags; /*! What account number to use */ char accountcode[AST_MAX_ACCOUNT_CODE]; /*! flags */ -- cgit v1.2.3