mysql plugin: remove unneccesary cast
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 24 Jul 2016 11:37:14 +0000 (13:37 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 24 Jul 2016 11:44:44 +0000 (13:44 +0200)
src/mysql.c

index 9b8d6cf..8ab775f 100644 (file)
@@ -71,7 +71,7 @@ static void mysql_database_free (void *arg) /* {{{ */
 
        DEBUG ("mysql plugin: mysql_database_free (arg = %p);", arg);
 
-       db = (mysql_database_t *) arg;
+       db = arg;
 
        if (db == NULL)
                return;