Skip to content
Snippets Groups Projects
Commit 5661607e authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix invalid type in argument to printf format specifier

CID 319001
parent 51e80cb1
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -558,7 +558,7 @@ void status_thread(void *arg) ...@@ -558,7 +558,7 @@ void status_thread(void *arg)
closesocket(*csock); closesocket(*csock);
free(csock); free(csock);
pthread_mutex_lock(&status_thread_mutex); pthread_mutex_lock(&status_thread_mutex);
lprintf(LOG_CRIT, "Error recv returned %d (%d)!", len, errno); lprintf(LOG_CRIT, "Error recv returned %ld (%d)!", len, errno);
continue; continue;
} }
// TODO: Check auth... "User\0Pass\0SysPass" // TODO: Check auth... "User\0Pass\0SysPass"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment