You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/redland/files/redland-1.0.17-mysql-8-my_b...

16 lines
462 B

--- a/src/rdf_storage_mysql.c
+++ b/src/rdf_storage_mysql.c
@@ -445,11 +445,11 @@
/* Initialize closed MySQL connection handle */
connection->handle=mysql_init(connection->handle);
#ifdef HAVE_MYSQL_OPT_RECONNECT
if(1) {
- my_bool value=(context->reconnect) ? 1 : 0;
+ bool value=(context->reconnect) ? 1 : 0;
mysql_options(connection->handle, MYSQL_OPT_RECONNECT, &value);
}
#endif
/* Create connection to database for handle */