chiark / gitweb /
catacomb-python.h: Don't inhibit 64-bit type detection any more.
[catacomb-python] / field.c
diff --git a/field.c b/field.c
index cce2e89124d10d22ef83d6a613826df65c4c9fef..2807c1ccbfb6cb491fb5902868548af47f6b203a 100644 (file)
--- a/field.c
+++ b/field.c
@@ -958,7 +958,7 @@ static PyObject *meth__Field_parse(PyObject *me, PyObject *arg)
   qd.p = p;
   qd.e = 0;
   if ((f = field_parse(&qd)) == 0)
-    SYNERR(qd.e);
+    VALERR(qd.e);
   rc = Py_BuildValue("(Ns)", field_pywrap(f), qd.p);
 end:
   return (rc);