mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
gst/gst.override: printf("urlencoded%20space") != printf("%s", "urlencoded%20space")
Original commit message from CVS: * gst/gst.override: (pygst_debug_log): printf("urlencoded%20space") != printf("%s", "urlencoded%20space") Funny how a lot of problems have gone since that's fixed :)
This commit is contained in:
parent
8ad2d61eeb
commit
4164682236
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):
|
||||||
|
printf("urlencoded%20space") != printf("%s", "urlencoded%20space")
|
||||||
|
Funny how a lot of problems have gone since that's fixed :)
|
||||||
|
|
||||||
2005-08-09 Edward Hervey <edward@fluendo.com>
|
2005-08-09 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* gst/gstpad.override: (_wrap_gst_pad_query_position):
|
* gst/gstpad.override: (_wrap_gst_pad_query_position):
|
||||||
|
|
|
@ -239,7 +239,7 @@ pygst_debug_log (PyObject *whatever, PyObject *string, GstDebugLevel level)
|
||||||
filename = PyString_AsString(frame->f_code->co_filename);
|
filename = PyString_AsString(frame->f_code->co_filename);
|
||||||
lineno = frame->f_code->co_firstlineno;
|
lineno = frame->f_code->co_firstlineno;
|
||||||
/* gst_debug_log : category, level, file, function, line, object, format, va_list */
|
/* gst_debug_log : category, level, file, function, line, object, format, va_list */
|
||||||
gst_debug_log (GST_CAT_DEFAULT, level, filename, function, lineno, NULL, str);
|
gst_debug_log (GST_CAT_DEFAULT, level, filename, function, lineno, NULL, "%s", str);
|
||||||
Py_INCREF (Py_None);
|
Py_INCREF (Py_None);
|
||||||
return Py_None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue