src: Use lowercase to show it is not the name of frame

This commit is contained in:
Tatsuhiro Tsujikawa 2016-02-25 21:18:09 +09:00
parent ba34e911e1
commit bc933e9981
1 changed files with 2 additions and 2 deletions

View File

@ -143,9 +143,9 @@ std::string strframetype(uint8_t type) {
return "WINDOW_UPDATE";
}
std::string s = "UNKNOWN(0x";
std::string s = "extension(0x";
s += util::format_hex(&type, 1);
s += ")";
s += ')';
return s;
};