mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-27 03:55:01 +00:00
ci: Fix issues for build stage
- Fixed logs expecting different format specifier - Updated ignore list for check_public_header test - Updated functions ported from mbedTLS - Fix for make-system build errors
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
TRACE_CHECK(_fn, "state"); \
|
||||
\
|
||||
if ((_ret = _fn) != 0) { \
|
||||
ESP_LOGV(TAG, "\"%s\" result is -0x%x", # _fn, -_ret); \
|
||||
ESP_LOGV(TAG, "\"%s\" result is %d", # _fn, -_ret); \
|
||||
TRACE_CHECK(_fn, "fail"); \
|
||||
return _ret; \
|
||||
} \
|
||||
@@ -46,7 +46,7 @@ struct esp_mbedtls_ssl_buf {
|
||||
unsigned char buf[];
|
||||
};
|
||||
|
||||
#define SSL_BUF_HEAD_OFFSET_SIZE offsetof(struct esp_mbedtls_ssl_buf, buf)
|
||||
#define SSL_BUF_HEAD_OFFSET_SIZE ((int)offsetof(struct esp_mbedtls_ssl_buf, buf))
|
||||
|
||||
void esp_mbedtls_free_buf(unsigned char *buf);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user