FS-5588 --resolve windows compiler fixes
This commit is contained in:
parent
3e92f570d1
commit
ca73adbea0
|
@ -764,8 +764,8 @@ static void *msg_thread_run(esl_thread_t *me, void *obj)
|
|||
SetConsoleTextAttribute(hStdout, colors[level]);
|
||||
}
|
||||
if (global_profile->log_uuid && !esl_strlen_zero(userdata)) {
|
||||
WriteFile(hStdout, userdata, strlen(userdata), &outbytes, NULL);
|
||||
WriteFile(hStdout, " ", strlen(" "), &outbytes, NULL);
|
||||
WriteFile(hStdout, userdata, (DWORD)strlen(userdata), &outbytes, NULL);
|
||||
WriteFile(hStdout, " ", (DWORD)strlen(" "), &outbytes, NULL);
|
||||
}
|
||||
WriteFile(hStdout, handle->last_event->body, len, &outbytes, NULL);
|
||||
if(!(global_profile->batch_mode)) {
|
||||
|
|
Loading…
Reference in New Issue