[SR-Dev] git:janakj/mysql: - port from opensips r4526, credits goes to bogdan

Jan Janak jan at iptel.org
Mon Feb 16 22:07:53 CET 2009


Module: sip-router
Branch: janakj/mysql
Commit: 5ec58d244b742871503b4a9618b41e99d991cec4
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5ec58d244b742871503b4a9618b41e99d991cec4

Author: Henning Westerholt <henning.westerholt at 1und1.de>
Committer: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Aug  6 15:32:44 2008 +0000

- port from opensips r4526, credits goes to bogdan
- 64bits compile warnings fixed


git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4618 689a6050-402a-0410-94f2-e92a70836424

---

 modules/db_mysql/km_res.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/db_mysql/km_res.c b/modules/db_mysql/km_res.c
index 7540a09..e572621 100644
--- a/modules/db_mysql/km_res.c
+++ b/modules/db_mysql/km_res.c
@@ -75,8 +75,8 @@ int db_mysql_get_columns(const db_con_t* _h, db_res_t* _r)
 			db_free_columns(_r);
 			return -4;
 		}
-		LM_DBG("allocate %d bytes for RES_NAMES[%d] at %p\n", sizeof(str), col,
-				RES_NAMES(_r)[col]);
+		LM_DBG("allocate %lu bytes for RES_NAMES[%d] at %p\n",
+				(unsigned long)sizeof(str), col, RES_NAMES(_r)[col]);
 
 		/* The pointer that is here returned is part of the result structure. */
 		RES_NAMES(_r)[col]->s = fields[col].name;




More information about the sr-dev mailing list