From 346c291a2d274ed1fb315a631a2bd991d366eaa2 Mon Sep 17 00:00:00 2001 From: North Antara Date: Wed, 19 Jul 2006 22:48:00 +0000 Subject: [PATCH] Remove "initialization from incompatible pointer type" warnings. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38010 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_config_odbc.c | 2 +- res/res_config_pgsql.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/res/res_config_odbc.c b/res/res_config_odbc.c index 31989ebd7c..a964ee75fe 100644 --- a/res/res_config_odbc.c +++ b/res/res_config_odbc.c @@ -487,7 +487,7 @@ static SQLHSTMT config_odbc_prepare(struct odbc_obj *obj, void *data) return sth; } -static struct ast_config *config_odbc(const char *database, const char *table, const char *file, struct ast_config *cfg) +static struct ast_config *config_odbc(const char *database, const char *table, const char *file, struct ast_config *cfg, int withcomments) { struct ast_variable *new_v; struct ast_category *cur_cat; diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c index 8b8d77d918..ace243e12a 100644 --- a/res/res_config_pgsql.c +++ b/res/res_config_pgsql.c @@ -439,7 +439,8 @@ static int update_pgsql(const char *database, const char *table, const char *key } static struct ast_config *config_pgsql(const char *database, const char *table, - const char *file, struct ast_config *cfg) + const char *file, struct ast_config *cfg, + int withcomments) { PGresult *result = NULL; long num_rows;