<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- a/src/rdf_storage_mysql.c
+++ b/src/rdf_storage_mysql.c
@@ -445,11 +445,11 @@
   /* Initialize closed MySQL connection handle */
   connection-&gt;handle=mysql_init(connection-&gt;handle);
 
 #ifdef HAVE_MYSQL_OPT_RECONNECT
   if(1) {
-    my_bool value=(context-&gt;reconnect) ? 1 : 0;
+    bool value=(context-&gt;reconnect) ? 1 : 0;
     mysql_options(connection-&gt;handle, MYSQL_OPT_RECONNECT, &amp;value);
   }
 #endif
 
   /* Create connection to database for handle */
</pre></body></html>