Преглед изворни кода

- 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

Henning Westerholt пре 17 година
родитељ
комит
df15c1c6c2
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      modules/db_berkeley/km_bdb_res.c

+ 2 - 2
modules/db_berkeley/km_bdb_res.c

@@ -74,8 +74,8 @@ int bdb_get_columns(table_p _tp, db_res_t* _res, int* _lres, int _nc)
 			db_free_columns(_res);
 			return -3;
 		}
-		LM_DBG("allocate %d bytes for RES_NAMES[%d] at %p\n", sizeof(str), col,
-				RES_NAMES(_res)[col]);
+		LM_DBG("allocate %lu bytes for RES_NAMES[%d] at %p\n",
+			(unsigned long)sizeof(str), col, RES_NAMES(_res)[col]);
 
 		/* The pointer that is here returned is part of the result structure. */
 		RES_NAMES(_res)[col]->s = cp->name.s;