Remove obvious empty statements (i.e. stray semicolons)

This commit is contained in:
Tobias Brunner
2024-02-29 15:30:40 +01:00
parent 9d1f325a77
commit 6dee8587f0
22 changed files with 28 additions and 28 deletions
@@ -333,7 +333,7 @@ static MYSQL_STMT* run(MYSQL *mysql, char *sql, va_list *args)
}
case DB_TEXT:
{
bind[i].buffer_type = MYSQL_TYPE_STRING;;
bind[i].buffer_type = MYSQL_TYPE_STRING;
bind[i].buffer = va_arg(*args, char*);
if (bind[i].buffer)
{
@@ -399,7 +399,7 @@ typedef struct {
conn_t *conn;
/** value for INT, UINT, double */
union {
void *p_void;;
void *p_void;
int *p_int;
u_int *p_uint;
double *p_double;