]> sigrok.org Git - libsigrokdecode.git/blobdiff - exception.c
srd: uart: Fix regression.
[libsigrokdecode.git] / exception.c
index 1f30c80d95a440b2a8ab7c62fb08e1d24bc463bd..0c248e169e4c4b45502a8d781df86b532e47801c 100644 (file)
@@ -24,7 +24,7 @@
 #include <glib.h>
 #include <frameobject.h> /* Python header not pulled in by default. */
 
-SRD_PRIV void catch_exception(const char *format, ...)
+SRD_PRIV void srd_exception_catch(const char *format, ...)
 {
        PyObject *etype, *evalue, *etb, *py_str;
        PyTracebackObject *py_tb;
@@ -67,7 +67,7 @@ SRD_PRIV void catch_exception(const char *format, ...)
        /* Send a more precise error location to srd_dbg(), if we have it. */
        if (etb && etb != Py_None) {
                tracestr = NULL;
-               py_tb = (PyTracebackObject *) etb;
+               py_tb = (PyTracebackObject *)etb;
                py_str = PyUnicode_FromFormat("%U:%d in %U",
                                        py_tb->tb_frame->f_code->co_filename,
                                        py_tb->tb_frame->f_lineno,