summaryrefslogtreecommitdiff
path: root/cdr/cdr_adaptive_odbc.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-05-22 02:41:55 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-05-22 02:41:55 +0000
commitcff6586d8d62eaeec46721c3dbb0743a27881a92 (patch)
treefac359452cf6cf0a003c5644860e4d44d4069940 /cdr/cdr_adaptive_odbc.c
parentff73bfb7e708e48c93bd62117a5582861393819a (diff)
Fix for 64-bit platform
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@65313 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'cdr/cdr_adaptive_odbc.c')
-rw-r--r--cdr/cdr_adaptive_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdr/cdr_adaptive_odbc.c b/cdr/cdr_adaptive_odbc.c
index 092aa14dd..7e5a7f856 100644
--- a/cdr/cdr_adaptive_odbc.c
+++ b/cdr/cdr_adaptive_odbc.c
@@ -305,7 +305,7 @@ static int odbc_log(struct ast_cdr *cdr)
char *sql = ast_calloc(sizeof(char), sizesql), *sql2 = ast_calloc(sizeof(char), sizesql2), *tmp;
char colbuf[1024], *colptr;
SQLHSTMT stmt = NULL;
- SQLINTEGER rows = 0;
+ SQLLEN rows = 0;
if (AST_RWLIST_RDLOCK(&odbc_tables)) {
ast_log(LOG_ERROR, "Unable to lock table list. Insert CDR(s) failed.\n");