fixed typo

This commit is contained in:
Amy G. Bowersox 2019-12-09 12:30:27 -07:00
parent 5ff7bd0858
commit ccde6c71f9
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ HRESULT Epython_register_constants(PyObject *module, PCREGCONSTANT const_table)
case 's':
rc = PyModule_AddStringConstant(module, const_table[i].name, const_table[i].value.sval);
break;
default;
default:
Log(LERROR, "register_constants type '%c' unknown", const_table[i].regtype);
return E_UNEXPECTED;
}