src: Use lowercase to show it is not the name of frame
This commit is contained in:
parent
ba34e911e1
commit
bc933e9981
|
@ -143,9 +143,9 @@ std::string strframetype(uint8_t type) {
|
||||||
return "WINDOW_UPDATE";
|
return "WINDOW_UPDATE";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string s = "UNKNOWN(0x";
|
std::string s = "extension(0x";
|
||||||
s += util::format_hex(&type, 1);
|
s += util::format_hex(&type, 1);
|
||||||
s += ")";
|
s += ')';
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue