Commit bc933e99 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

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

parent ba34e911
...@@ -143,9 +143,9 @@ std::string strframetype(uint8_t type) { ...@@ -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;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment