Bug 6615 - Fix 64bit conversion errors by using a long int

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@11503 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2006-03-01 17:41:52 +00:00
parent c4c44af8e3
commit 536dcc2058
7 changed files with 21 additions and 21 deletions

View File

@@ -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 */