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)
|
if (msg)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
XEXIT((THREAD_RETURN)EXIT_FAILURE);
|
XEXIT_T(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@
|
|||||||
typedef struct memoryTrack {
|
typedef struct memoryTrack {
|
||||||
union {
|
union {
|
||||||
memHint hint;
|
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;
|
} u;
|
||||||
} memoryTrack;
|
} memoryTrack;
|
||||||
|
|
||||||
@ -263,6 +263,7 @@
|
|||||||
(void)line;
|
(void)line;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
(void)sz;
|
||||||
|
|
||||||
free(mt);
|
free(mt);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user