mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-22 05:00:55 +01:00
Fix compile error.
This commit is contained in:
parent
1a5beaa7c0
commit
353e5a6cb1
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ bool NimBLEAddress::operator !=(const NimBLEAddress & rhs) const {
|
|||
* that accept std::string and/or or it's methods as a parameter.
|
||||
*/
|
||||
NimBLEAddress::operator std::string() const {
|
||||
char buffer[26];
|
||||
char buffer[28];
|
||||
snprintf(buffer, sizeof(buffer), "%02x:%02x:%02x:%02x:%02x:%02x type: %d",
|
||||
m_address[5], m_address[4], m_address[3],
|
||||
m_address[2], m_address[1], m_address[0],
|
||||
|
|
Loading…
Reference in a new issue