Remove obvious empty statements (i.e. stray semicolons)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user