diff --git a/src/rdf_storage_mysql.c b/src/rdf_storage_mysql.c index ca9a4eef..fbaa4dba 100644 --- a/src/rdf_storage_mysql.c +++ b/src/rdf_storage_mysql.c @@ -447,7 +447,7 @@ librdf_storage_mysql_get_handle(librdf_storage* storage) #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