X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=exception.c;h=0c248e169e4c4b45502a8d781df86b532e47801c;hp=aa7ab616d58df4a949e8cf0c814ca06118c9a73a;hb=0bd62eb1ffc0b1611f88c2cbf8e59b4be183113b;hpb=7a1712c4fd07f64222079acd5ec3fa3348a5cb15 diff --git a/exception.c b/exception.c index aa7ab61..0c248e1 100644 --- a/exception.c +++ b/exception.c @@ -24,8 +24,7 @@ #include #include /* Python header not pulled in by default. */ - -void catch_exception(const char *format, ...) +SRD_PRIV void srd_exception_catch(const char *format, ...) { PyObject *etype, *evalue, *etb, *py_str; PyTracebackObject *py_tb; @@ -68,10 +67,11 @@ 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, - py_tb->tb_frame->f_code->co_name); + py_tb->tb_frame->f_code->co_filename, + py_tb->tb_frame->f_lineno, + py_tb->tb_frame->f_code->co_name); py_str_as_str(py_str, &tracestr); Py_DecRef(py_str); g_string_printf(msg, "%s in %s: %s", ename, tracestr, str); @@ -87,8 +87,4 @@ void catch_exception(const char *format, ...) /* Just in case. */ PyErr_Clear(); - - return; } - -