mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 02:33:53 +00:00
gst/gst.override: gchar is way smaller than an int... resulting in negative line numbers in debug.
Original commit message from CVS: * gst/gst.override: (pygst_debug_log): gchar is way smaller than an int... resulting in negative line numbers in debug.
This commit is contained in:
parent
4164682236
commit
54936521fb
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-08-10 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
|
* gst/gst.override: (pygst_debug_log):
|
||||||
|
gchar is way smaller than an int... resulting in negative line numbers
|
||||||
|
in debug.
|
||||||
|
|
||||||
2005-08-10 Edward Hervey <edward@fluendo.com>
|
2005-08-10 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* gst/gst.override: (pygst_debug_log):
|
* gst/gst.override: (pygst_debug_log):
|
||||||
|
|
|
@ -226,7 +226,7 @@ pygst_debug_log (PyObject *whatever, PyObject *string, GstDebugLevel level)
|
||||||
gchar *str;
|
gchar *str;
|
||||||
gchar *function;
|
gchar *function;
|
||||||
gchar *filename;
|
gchar *filename;
|
||||||
gchar lineno;
|
int lineno;
|
||||||
PyFrameObject *frame;
|
PyFrameObject *frame;
|
||||||
|
|
||||||
if (!PyArg_ParseTuple(string, "s:gst.debug_log", &str)) {
|
if (!PyArg_ParseTuple(string, "s:gst.debug_log", &str)) {
|
||||||
|
|
Loading…
Reference in a new issue