Merged revisions 11503 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r11503 | tilghman | 2006-03-01 11:41:52 -0600 (Wed, 01 Mar 2006) | 2 lines

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

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@11504 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2006-03-01 17:53:05 +00:00
parent 37a3bdce2a
commit c6f691fbcc
7 changed files with 23 additions and 23 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 */