Code cleanup
This commit is contained in:
parent
7a9419e4ba
commit
d7da8c5297
@ -89,7 +89,7 @@ int main(int argc, char* argv[])
|
||||
goto return_err;
|
||||
}
|
||||
|
||||
thr = (thread_t*)calloc(1, nthr*sizeof(thread_t*));
|
||||
thr = (thread_t **)calloc(1, nthr*sizeof(thread_t*));
|
||||
|
||||
if (thr == NULL)
|
||||
{
|
||||
@ -585,7 +585,6 @@ static void* thr_run_morelog(
|
||||
void* data)
|
||||
{
|
||||
thread_t* td = (thread_t *)data;
|
||||
char* logstr;
|
||||
int err;
|
||||
int i;
|
||||
int nmsg;
|
||||
|
@ -15,7 +15,6 @@
|
||||
*
|
||||
* Copyright MariaDB Corporation Ab 2013-2014
|
||||
*/
|
||||
#include <my_config.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user