From ccde6c71f92814191f7b5b6a69e919182e0eb885 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Mon, 9 Dec 2019 12:30:27 -0700 Subject: [PATCH] fixed typo --- src/ep_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ep_util.c b/src/ep_util.c index 61184af..456b5a8 100644 --- a/src/ep_util.c +++ b/src/ep_util.c @@ -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; }