0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-02-18 09:40:12 +01:00

ircd:Ⓜ️:vm: Add missing INTERRUPT fault to reflect switch.

This commit is contained in:
Jason Volk 2018-04-16 13:48:16 -07:00
parent 39a5272ee3
commit cae6964fa5

View file

@ -485,6 +485,7 @@ ircd::m::vm::reflect(const enum fault &code)
case fault::GENERAL: return "GENERAL";
case fault::EVENT: return "EVENT";
case fault::STATE: return "STATE";
case fault::INTERRUPT: return "INTERRUPT";
}
return "??????";