mirror of
https://github.com/open62541/open62541.git
synced 2025-06-03 04:00:21 +00:00
Avoid MinGW warning unknown conversion type character 'z' in format
This commit is contained in:
parent
27e955528f
commit
0c62edab47
@ -111,7 +111,7 @@ UA_EndpointDescription *getRegisterEndpointFromServer(const char *discoveryServe
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
UA_LOG_DEBUG(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "Server has %zu endpoints", endpointArraySize);
|
UA_LOG_DEBUG(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "Server has %lu endpoints", (unsigned long)endpointArraySize);
|
||||||
UA_EndpointDescription *foundEndpoint = NULL;
|
UA_EndpointDescription *foundEndpoint = NULL;
|
||||||
for (size_t i = 0; i < endpointArraySize; i++) {
|
for (size_t i = 0; i < endpointArraySize; i++) {
|
||||||
UA_LOG_DEBUG(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "\tURL = %.*s, SecurityMode = %s",
|
UA_LOG_DEBUG(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "\tURL = %.*s, SecurityMode = %s",
|
||||||
|
Loading…
Reference in New Issue
Block a user