aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-01 17:41:52 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-01 17:41:52 +0000
commit9fd61ee322a69acb1c130fbe104c2344e226a958 (patch)
tree707dd1d059c6549fff6b3d2eaa23b680125d586d /include
parent2dc2605d05869a7be2ca3cbb03b76762d2aefbec (diff)
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
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/cdr.h8
1 files changed, 4 insertions, 4 deletions
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 */