From 428722ec5368bff32dabf59826ccd87c218f940b Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 15 Apr 2011 10:07:05 +0000 Subject: [PATCH] fixes --- src/datastore/plugin_datastore_mysql.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c index 84f9d313c..fdbb9d1b5 100644 --- a/src/datastore/plugin_datastore_mysql.c +++ b/src/datastore/plugin_datastore_mysql.c @@ -657,7 +657,7 @@ init_params (struct Plugin *plugin, } if (! ( (pc == 0) && (-1 != (int) ft) && (va_arg (ap, int) == -1) ) ) { - GNUNET_break (0); + GNUNET_assert (0); return GNUNET_SYSERR; } if (mysql_stmt_bind_param (s->statement, qbind)) @@ -1465,14 +1465,11 @@ replication_prepare (void *cls, struct NextRequestClosure *nrc) { struct Plugin *plugin = cls; - unsigned long long nt; - nt = (unsigned long long) nrc->now.abs_value; return prepared_statement_run_select (plugin, plugin->select_replication, - 6, nrc->rbind, + 7, nrc->rbind, &return_ok, NULL, - MYSQL_TYPE_LONGLONG, &nt, GNUNET_YES, -1); } -- 2.25.1