mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
Fixes for warnings from Jenkins reports.
This commit is contained in:
@ -421,7 +421,7 @@ err_sys(const char* msg)
|
||||
if (msg)
|
||||
#endif
|
||||
{
|
||||
XEXIT((THREAD_RETURN)EXIT_FAILURE);
|
||||
XEXIT_T(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -95,7 +95,7 @@
|
||||
typedef struct memoryTrack {
|
||||
union {
|
||||
memHint hint;
|
||||
byte alignit[sizeof(memHint) + (16-1 & ~(16-1))]; /* make sure we have strong alignment */
|
||||
byte alignit[sizeof(memHint) + ((16-1) & ~(16-1))]; /* make sure we have strong alignment */
|
||||
} u;
|
||||
} memoryTrack;
|
||||
|
||||
@ -263,6 +263,7 @@
|
||||
(void)line;
|
||||
#endif
|
||||
#endif
|
||||
(void)sz;
|
||||
|
||||
free(mt);
|
||||
}
|
||||
|
Reference in New Issue
Block a user