mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 12:10:59 +00:00
global: fix sign-compare warnings
This commit is contained in:
@@ -64,7 +64,7 @@ char *http_utils_get_string_between(const char *str, const char *begin, const ch
|
||||
* - New string pointer
|
||||
* - NULL: Invalid input
|
||||
*/
|
||||
char *http_utils_join_string(const char *first_str, int len_first, const char *second_str, int len_second);
|
||||
char *http_utils_join_string(const char *first_str, size_t len_first, const char *second_str, size_t len_second);
|
||||
|
||||
/**
|
||||
* @brief Check if ``str`` is start with ``start``
|
||||
|
Reference in New Issue
Block a user