diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-07-16 20:35:10 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-07-16 20:35:10 +0000 |
commit | f138394d15bda25c7aae11ef6aa86f580cf15316 (patch) | |
tree | 696040c147c97d4e6145fb49cf9dec5fceae4551 /src/datastore/plugin_datastore_postgres.c | |
parent | 1200ea518e3b1f59f32e92d80640c4b4d31cd2b0 (diff) |
voidret
Diffstat (limited to 'src/datastore/plugin_datastore_postgres.c')
-rw-r--r-- | src/datastore/plugin_datastore_postgres.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/datastore/plugin_datastore_postgres.c b/src/datastore/plugin_datastore_postgres.c index 115259dbf6..0327018e4b 100644 --- a/src/datastore/plugin_datastore_postgres.c +++ b/src/datastore/plugin_datastore_postgres.c @@ -159,10 +159,10 @@ init_connection (struct Plugin *plugin) /* Open database and precompile statements */ conninfo = NULL; - GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, - "datastore-postgres", - "CONFIG", - &conninfo); + (void) GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, + "datastore-postgres", + "CONFIG", + &conninfo); plugin->dbh = PQconnectdb (conninfo == NULL ? "" : conninfo); if (NULL == plugin->dbh) { |